5

我想将 h2 居中在 #top 内,但 vert-aliignt middle 不能使用相同的自动边距......我不知道该怎么做!

#top {
    display: block;
    position: relative;
    height: 100px;
    background-color: rgba(89,144,222,.6);
}
#top h2{
    text-shadow: 2px 2px black;
    text-align: center;
    color: white;
    font-family:"Impact";
    font-size: 50px;
}

效果是——在此处输入图像描述

4

2 回答 2

6

设置line-height:100px; vertical-align:middle在#top。

于 2013-03-23T17:25:25.003 回答
2

您可以将display:tableanddisplay:table-cellvertical-aling属性一起使用。

HTML

<div id="table">
    <div id="top">  
        <h2>Personal webpage</h2>
    </div>
</div>

CSS

#table{
    width:100%;
    display:table;
}

#top {
    display: table-cell;
    position: relative;
    width:100%;
    height: 100px;
    background-color: rgba(89,144,222,.6);
    vertical-align:middle;
}

#top h2{
    text-shadow: 2px 2px black;
    text-align: center;
    color: white;
    font-family:"Impact";
} 

JSF中。

于 2013-03-23T17:33:14.213 回答