如何垂直居中标签中的所有元素?

时间:2014-09-08 00:54:38

标签: html css alignment center

好吧,我正在开发即将推出的网站。到目前为止,一切都很好,但我似乎遇到了一个问题。对于我的生活,我似乎无法将所有内容垂直居中 - 我在互联网上阅读了很多页面,但我无法正常工作。

HTML:

<h1>Protean</h1>
<p>Your status bar, your way.</p>

<hr>

<a class="Button" href="#">
<i class="fa fa-spin fa-refresh"></i> Coming Soon</a>
<hr style="height:8pt; visibility:hidden;" />

CSS:

h1 {
color: #ffffff !important;
font-size: 350%;
}
p {
color: #ffffff !important;
font-size: 19px;
}
body {
background:#4fb088 !important;
text-align:center !important;
}
.Button {
background-color:#5fc79c;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:HelveticaNeue-Medium;
font-size:16.5px;
padding:15px 35px;
text-decoration:none;
}
.Button:hover {
background-color:#6cd2a8;
}
.Button:active {
position:relative;
top:1px;
}
a:hover {
text-decoration:none;
color:white;
}
brbutton {
display: block;
margin: 10px 0;
}
hr {
height:1px;
visibility:hidden;
margin-bottom:-1px;
}

我将这些文件转移到小提琴here中。 如果你愿意提供帮助,我们将不胜感激。

修改:Felipe M帮助我解决了我的问题。

1 个答案:

答案 0 :(得分:2)

<div class="container">
    <div class="cent"></div>
</div>

html,body
{
    height: 100%;
}
body
{
   display: table; 
   margin: 0 auto;
}

.container
{  
    height: 100%;
    display: table-cell;   
    vertical-align: middle;    
}
.cent
{
    height: 50px;
    width: 50px;
    background-color: black;      
}

你可以试试这个:http://jsfiddle.net/danield770/tVuS6/14/
从这里:Center a div horizontally and vertically and keep centered when resizing the parent
改变您的需求。

顺便说一句,没有一种方法可以让内容居中而不使用某些div元素。

如果您想了解更多相关信息,我建议您提供一些提示:

祝你好运!