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

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

WBOY
Freigeben: 2016-06-24 12:24:46
Original
1215 Leute haben es durchsucht


怎么让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>
Nach dem Login kopieren
Nach dem Login kopieren
Nach dem Login kopieren

<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>
Nach dem Login kopieren
Nach dem Login kopieren
Nach dem Login kopieren


我的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>
Nach dem Login kopieren
Nach dem Login kopieren
Nach dem Login kopieren


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

1111

Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
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
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage