Heim  >  Artikel  >  Web-Frontend  >  一个大的难题~~~样式的难题~~~我发现想不出来解决方法_html/css_WEB-ITnose

一个大的难题~~~样式的难题~~~我发现想不出来解决方法_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 12:16:081039Durchsuche

<!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>



网页呈现的是一个div居中,

现在要做的是,【紧接着】这个div,要在它下面加一个div,

比如

123


紧接着的含义是,在id为wrapper的div正下方,左端距离一样,顶部接上面的div

发现相当难~~~~

回复讨论(解决方案)

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>
    


        
    
        

123

    


给分 完美解决 

nbsp;html>
    


        
    
        

        
123


    

这样不行么???


assdf
1234

  

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn