慕粉3344523
2016-07-06 19:19
怎么让盒子2个字位于这个正方形框的中间。
用text-align:center
和line-height 来居中
#box1{
text-align: center;
width:100px;
height:100px;
line-height:100px;
border:1px solid red;
}
是正确的
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>填充</title>
<style type="text/css">
#box1{
text-align: center;
width:100px;
height:100px;
padding:10px;
border:1px solid red;
}
</style>
</head>
<body>
<div id="box1">
<pre> </pre>盒子1
</div>
</body>
</html>
box{padding:1px 1px 1px 40px;}
设置为会计元素,text-align=“center”
初识HTML(5)+CSS(3)-升级版
1225813 学习 · 18234 问题
相似问题