为什么这段代码在GOOGLE上出错,在ie上就没问题_html/css_WEB-ITnose

WBOY
Freigeben: 2016-06-21 09:45:52
Original
1265 Leute haben es durchsucht

浏览器 ie6 谷歌 google

为什么这段代码在GOOGLE上出错,在ie上就没问题_html/css_WEB-ITnose
rt,退出按钮,用谷歌浏览器能显示出来但是位置不对,而且不能点击跳转页面,在IE6上无任何问题。是兼容性问题吗?

回复讨论(解决方案)

光这部分代码应当没有问题,发全出来看看.


.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;}
Nach dem Login kopieren

是这段样式的问题

      <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>
Nach dem Login kopieren

position: fixed;去掉就好了,什么原因呢?

IE不支持position为fixed的属性.
而非IE支持,position:fixed这样相当于浮动,其大小会被改变,从而导致其遮挡住按钮.
虽然能看到按钮,但实际上按钮上方是有一个透明的td挡住的,所以不能被点击中

IE不支持position为fixed的属性.
而非IE支持,position:fixed这样相当于浮动,其大小会被改变,从而导致其遮挡住按钮.
虽然能看到按钮,但实际上按钮上方是有一个透明的td挡住的,所以不能被点击中
不对啊,是ie能点到,别的点不到啊

Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage