<!DOCTYPE html> <head> <style>#wrapper{width:800px;position:absolute;left:50%;margin-left: -400px;height:300px;border:1px solid red} </style> <body> <div id="wrapper"></div> </body></html>
body的样式是:text-align:center;
下面的div:width:960px;margin:0 auto;
body的样式是:text-align:center;
下面的div:width:960px;margin:0 auto;
<!DOCTYPE html> <head> <style>#wrapper{width:800px;position:absolute;left:50%;margin-left: -400px;height:300px;border:1px solid red} </style> <body style="text-align:center;"> <div style="width:960px;margin:auto;"> <div id="wrapper"></div> <div>123</div> </div> </body></html>
当然不是~~~~123在wrapper里面 当然错了~~
用float,clear
123在wrapper外边
wrapper是绝对定位的,要让123在wrapper正下方,那么123也必须绝度定位
这有很渴可纠结的?
123在wrapper外边
wrapper是绝对定位的,要让123在wrapper正下方,那么123也必须绝度定位
这有很渴可纠结的?
为了方便观察,我把这个wrapper的高度是设成固定的,,实际运用中wrapper明显高度是自适应的,
所以很难~~~~
我感觉样式的问题都不是问题,只是我现在有点不懂你的意思了
要不你画个效果图(简单明了一点)上来,绝对定位不怎么可靠地,分辨率不一样,会错位
这有什么不可理解的?
他说的样式就是:你截取 “回复于”和“我感觉” 这两个区域的样子
前者是wrapper,后者是123
由于wrapper是绝对定位的,所以123也必须绝对定位。即123的左上角要与wrapper的左下角重合
如果wrapper的高度是自适应的,那么123就必须动态获取wrapper的高度来实现定位。这没有js参与就不可实现
当然,使用相对定位或者不用div就简单多了
亲可以看看我这个,我稍微调了一下
<!DOCTYPE html> <head> <style>#wrapper{width:800px;position:absolute;left:50%;margin-left: -400px;height:300px;border:1px solid red}#wrapper2{position:absolute;width:40px;height:40px;border:1px solid green;left:50%;top:310px} </style> <body><div id="wrapper"></div><div id="wrapper2">123</div> </body></html>
<!doctype html><html><head><style>* {padding:0px;margin:0px;}body {background:#ccc;}#page {width:802px;margin-left:auto;margin-right:auto;margin-top:10px;}#wrapper1 {width:800px;height:300px;border:1px solid red;background:white;}#wrapper2 {width:800px;height:300px;border:1px solid blue;background:white;}</style></head><body><div id="page"><div id="wrapper1">div1</div><div id="wrapper2">div2</div></div></body></html>
nbsp;html>
nbsp;html>
这样不行么???