我試圖創建一個「瓷磚」(方塊),其中間的內容完全居中。在div容器中間的中心內容
這裏的HTML
<div class="tile-facebook">
<h5>Facebook</h5>
<div class="tile-notification">4</div>
<h4>notifications</h4>
</div>
而CSS
.tile-facebook{
width:175px;
height:175px;
background: #3b5998 ;
text-align: center;
border-radius: 10px;
border-style: solid;
border-color: #ccc;
border-width:1px;
color: white;
}
.tile-notification{
font-size:80px;
font-weight:bold;
padding:10px 0px;
}
我得在塊的中間的文字,但是我希望它直接在中間具有相同從頂部和底部填充。思考?
這是你想要做的嗎? http://jsfiddle.net/cnq82/ –
是的,你知道了!謝謝! – user3370902
oki,剛剛用一些關於垂直填充/邊距的鏈接做了一個回答:) –