在CSS中居中文本

时间:2017-04-01 02:59:36

标签: html css center

对不起,我知道这很简单,但我无法解决这个问题。

这是我目前的Css风格

@import url(https://fonts.googleapis.com/css?family=Advent+Pro:100);
html { 
}
#overlay {
font-family: 'Advent Pro', sans-serif;
font-size: 7em;
margin: .2em .5em;
color: rgba(255, 255, 255, 1);
position: fixed;
right: 0;
}
video#bgvid { 
position: fixed; 
right: 0; 
top: 0;
width: 100%; 
height: auto; 
z-index: -100;
background-size: cover;
}

如何以#overlay为中心?!

1 个答案:

答案 0 :(得分:1)

使用text-align:center。如果需要,您可能需要给它一个100%的宽度。

希望这有帮助。