1. div居中代码怎么写 如果只是水平居中的话,只需要先定义DIV的宽度,再设置外边距margin属性的左右边距为auto即可 。此时DIV便会相对于它的父容器水平居中 。
比如 <div class=div_a><div class="div_b"><div></div>
设置div_b的样式
.div_b{width:100px; margin:0 auto;}
这样div_b便在div_a中水平居中了 。如果外面没有父DIV,则div_b便相对于整个页面居中 。注意如果div_b定义了浮动属性float则无效 。
2. 网页文字居中的代码是什么 html文字居中测试 <meta charset="UTF-8"> <style type="text/css"> body{background: #ddd;} div{width:300px;height:180px;margin:10px auto;color:#fff;font-size:24px;} .box1{background: #71a879;text-align: center;} .box2{background: #6a8bbc;line-height: 200px;} .box3{background: #dea46b;text-align: center;line-height: 200px;} </style><body> html文字水平居中 html文字垂直居中 html文字水平上下居中