<div id="tst">
Hello.
<div id="ln">
Red line should be not just in tst element, but in all body.
</div>
</div>
#tst {
width: 200px;
margin: 10px auto;
}
#ln {
width: 100%;
border-bottom: 2px solid red;
}
工作示例:http: //jsfiddle.net/hXEe7/
是否可以在不将#ln 元素放在#tst 之外的情况下使红线为身体的 100% 宽度?行必须在#ln 元素中,这只是一个示例。谢谢。