我在使用 z-index 时遇到了一些问题。当我将 z-index 添加到 id 以使其不与我拥有的另一个 div 重叠时,它会使图像在单击时突出显示,就像在双击时一样。
这只发生在 Firefox 中。在 Chrome 和 IE 9,8 和 7 中,它不会在点击时突出显示。我正在使用 Firefox 17.0.1。这可能是什么原因造成的?我的 ids CSS 看起来像这样:
#brand-content, #brand-content>img
{
width:100%;
height:100%;
position: relative;
top:0px;
z-index:-1;
}
我在页面上的 HTML 只是:
<head>
<link rel="stylesheet" type="text/css" href="../stylesheet.css">
</head>
<body>
<?php
include ("../includes/sidebar.php");
?>
<div id="brand-content">
<img src="../images/IMG_78707.jpg">
</div>
</body>