Rumah > Artikel > hujung hadapan web > 为什么这段代码在GOOGLE上出错,在ie上就没问题_html/css_WEB-ITnose
浏览器 ie6 谷歌 google
光这部分代码应当没有问题,发全出来看看.
.admin_txt { font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #FFFFFF; text-decoration: none; position: fixed; height: 38px; width: 100%; line-height: 38px;}
<tr> <td width="74%" style="max-width:90%" class="admin_txt">管理员: <b> <?php session_start(); //使用session存储用户ID信息 //利用User类的InitDataByUserId()方法得到用户信息数组,并在页面表单上显示 require_once("./user/UserClass.php"); $user=new User(); $user->GetUserName($_SESSION["ss_user_id"]); echo $user->mUserName; ?></b> 您好,欢迎登陆系统!</td> <td width="22%"><a href="Exit.php" target="_self"><img src="images/out.gif" alt="安全退出" width="46" style="max-width:90%" border="0"></a></td> <td width="4%"> </td> </tr>
position: fixed;去掉就好了,什么原因呢?
IE不支持position为fixed的属性.
而非IE支持,position:fixed这样相当于浮动,其大小会被改变,从而导致其遮挡住按钮.
虽然能看到按钮,但实际上按钮上方是有一个透明的td挡住的,所以不能被点击中
IE不支持position为fixed的属性.
而非IE支持,position:fixed这样相当于浮动,其大小会被改变,从而导致其遮挡住按钮.
虽然能看到按钮,但实际上按钮上方是有一个透明的td挡住的,所以不能被点击中
不对啊,是ie能点到,别的点不到啊