我希望我的文本保持居中,我想將它移動到div的右側。我的div覆蓋了圖像背景。在div的右側放置文本
我試圖改變:
<div class="col-sm-12">
到:
<div class="col-sm-12" style="float:right;">
,但沒有任何效果。有沒有辦法讓我在bootstrap中做到這一點,或者我必須使用我的自定義CSS?這怎麼能做到呢?
HTML:
<div id="box" class="vcenter">
<div class="container">
<div class="row center">
<div class="col-md-12">
<div class="row">
<div class="col-sm-12">
<p>Text text text text text text text text text ext text text text text text text text/p>
<p>Text text text text text text text text text ext text text text text text text text/p>
<p>Text text text text text text text text text ext text text text text text text text/p>
</div>
</div>
</div>
</div>
</div>
</div>
CSS:
.vcenter {
display: flex;
align-items: center;
}
#box {
background: url("url here") no-repeat center;
height: 500px;
}
.center {
text-align: center;
}
**文本保持居中**的,我想**它移動到右側**的div?所以你想要它居中或右對齊? –
以右對齊的div爲中心@AndrewLyndem – user4756836