我在bootstrap-4
中遇到了一些问题。
我将该部分置于text-center
:
<div class="text-center text-left">
<h2>Hi,I'm,</h2>
<h2>Bonheur jed,</h2>
<h2>Web Developer.</h2>
</div>
但我不需要标题中心
Hi,I'm,
Bonheur jed,
Web Developer.
相反,我希望它们在左边对齐但是居中
Hi,I'm,
Bonheur jed,
Web Developer.
答案 0 :(得分:0)
您应该移除text-center
并放置text-left
如果您想要分组中心,则必须为css
课程写一些div
示例class =“mydiv”并添加了一些你要对齐的css
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<div class="text-left">
<h2>Hi,I'm,</h2>
<h2>Bonheur jed,</h2>
<h2>Web Developer.</h2>
</div>