我是第一次进行Chrome扩展程序,并试图将文本居中。在我使用text-align: centre;
使其水平对齐的那一刻,但又想不出如何垂直对齐的那一刻,我的文字看起来像这样:
如果有人可以帮助,那就太好了。
答案 0 :(得分:6)
ex)显示:表格
ReactDOM.render(<App />, document.getElementById('root'));
div{
display: table;
width: 100px;
height: 50px;
background-color: #000;
}
div p{
display: table-cell;
text-align: center;
vertical-align: middle;
color: #fff;
}
ex)flex
<div>
<p>chatter</p>
</div>
div{
display: flex;
align-items: center;
justify-content: center;
width: 100px;
height: 50px;
background-color: #000;
}
div p{
color: #fff;
}
ex)位置
<div>
<p>chatter</p>
</div>
div{
position: relative;
width: 100px;
height: 50px;
background-color: #000;
text-align: center;
}
div p{
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
color: #fff;
}
答案 1 :(得分:-1)
我为此使用的一个非常简单的类是
.is-vertical-center {
display: flex;
align-items: center;
}
希望这会有所帮助!