时间:2021-07-01 10:21:17 帮助过:26人阅读
IE6 和 FF 的表现如下
示例代码:
- <meta charset="UTF-8"><title></title><style type="text/css"> * { margin: 0; padding: 0; } .box { position: relative; width: 401px; height: 200px; background-color: blue; } .inner { position: absolute; right: 0; top: 0; width: 100px; height: 200px; background-color: red; }</style><div class="box"> <div class="inner"></div></div>