Heim >Web-Frontend >HTML-Tutorial >怎么让div2 处于 div1 中间_html/css_WEB-ITnose

怎么让div2 处于 div1 中间_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 12:24:461217Durchsuche


怎么让div2 处于 div1 水平中间


回复讨论(解决方案)

可以使用js动态计算2者的宽度 高度然后进行除2,设置div1 的padding

<style>div{margin:0;padding:0}#div1{position:relative;height:200px;width:200px;background-color:red}#div2{position:absolute;height:100px;width:100px;background-color:yellow;top:50%;margin-top:-50px;left:50%;margin-left:-50px}</style><div id="div1">	<div id="div2">	</div></div>

<style>div{margin:0;padding:0}#div1{position:relative;height:200px;width:200px;background-color:red}#div2{position:absolute;height:100px;width:100px;background-color:yellow;top:50%;margin-top:-50px;left:50%;margin-left:-50px}</style><div id="div1">	<div id="div2">	</div></div>


我的div1宽度是随着浏览器跨度延伸的

延伸就延伸呗,你直接把div1的width属性去掉就行了
只要div2的宽度是固定的就行。


<style>div{margin:0;padding:0}#div1{position:relative;height:200px;width:200px;background-color:red}#div2{position:absolute;height:100px;width:100px;background-color:yellow;top:50%;margin-top:-50px;left:50%;margin-left:-50px}</style><div id="div1">	<div id="div2">	</div></div>


我的div1宽度是随着浏览器跨度延伸的

1111

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