我正在设置缩放:1;在一些元素上。当我随后使用IE 6.0.29中的开发人员工具检查CSS时,我看到缩放:100%存在,但hasLayout仍为-1。为什么hasLayout不被强迫?
.album_thumbnail_outer_container {
position: relative;
height: 200px;
width: 150px;
border: solid black 1px;
float:left;
color: #628FDB;
font-weight: bold;
margin: 20px;
background: #262626;
text-align: center;
*zoom:1;
}
以下是属性的屏幕截图:
答案 0 :(得分:0)
设置位置相对可以起作用,但也可能有其他后果,所以请确保你知道这一点。此外,只有块元素可以具有布局,因此如果您在内联元素上尝试此操作,它将不起作用。