如何在不使用wrapper
的情况下将text-align:center
中的方块居中?
我需要这个,因为它也将所有文本都集中在正方形中,但我不需要这个。
HTML :
<div id="wrapper">
<div id="squares">
<div class="square">lol</div>
<div class="square">lol</div>
<div class="square">lol</div>
<div class="square">lol</div>
<div class="square">lol</div>
<div class="square">lol</div>
<div class="square">lol</div>
</div>
</div>
CSS :
html, body{
height: 100%;
}
body {
line-height: 18px;
}
#wrapper{
width: 960px;
height: 100%;
border: 1px solid red;
margin: 0 auto;
}
.square {
width:251px;
height:207px;
border: 1px solid #d6d6d6;
-webkit-box-shadow: 1px 1px 3px rgba(0,0,0,.1);
-moz-box-shadow: 1px 1px 3px rgba(0,0,0,.1);
box-shadow: 1px 1px 3px rgba(0,0,0,.1);
margin: 10px;
overflow:hidden;
position:relative;
background-color:#fff;
display: inline-block;
cursor: pointer;
}
答案 0 :(得分:5)
您可以尝试:
.squares {
margin-left:auto;
margin-right:auto;
}
答案 1 :(得分:4)
#wrapper{
...
text-align: center;
}
.square {
...
text-align: left;
}
----另一种方式(我不推荐!)如何找到52px :( div的宽度 - (#of square *宽度为一个方格))/ #of squares + 1 - &gt; ; (960-(250×3))/ 4
#wrapper{
...
padding-left:52px;
}
.square {
...
margin: 10px 52px 10px 0;
}
答案 2 :(得分:0)
由于广场内的文字是您的样式,因此您可以在文字周围添加H
或P
标记,然后text-align: left;
。