当前位置:Gxlcms > html代码 > DIV居中的CSS_html/css_WEB-ITnose

DIV居中的CSS_html/css_WEB-ITnose

时间:2021-07-01 10:21:17 帮助过:13人阅读

新学CSS,经常会碰到定位DIV的情况,这句CSS可以让DIV自动居中:

position: absolute; width:420px; height:230px; left:50%; top:50%;margin-left:-250px; margin-top:-100px; border: 1px solid #ccc;

收藏以免忘记

position: absolute;是绝对定位

position:relative;是相对当前的元素的上级元素

人气教程排行