例如,下面的例子。
html代码:
<body>
<div id="container">
<figure id="abtex">
<img src="images/abtex125.png" />
</figure>
</div>
</body>
CSS 代码:
#container{
max-width:1050px;
margin: 0 auto;
max-height: 1000px;
}
#abtex {
position: absolute;
top:-100px;
left:400px;
}
#abtex
不会遵循#container
诸如max-width
etc之类的CSS命令吗?