私は、テキストを黄色のスペース全体の中に垂直にセンタリングしようとしています。私は、 "my-auto"クラスだけでなく、ドキュメントにも書かれているように、 "align-items-center"を行に実装しようとしていました。私は何が間違っているのか分かりません。「col-sm-12」内のテキストをブートストラップ4で縦方向にセンタリングするにはどうすればよいですか?
#heading-cont {
background-color: #F7CE38;
height: 10rem;
}
.white {
color: white;
}
.title {
font-family: 'Montserrat', Arial, sans-serif;
text-transform: uppercase;
font-weight: 300;
}
.description {
font-family: 'Pathway Gothic One', Arial, sans-serif;
font-weight: 400;
text-transform: uppercase;
}
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-beta/css/bootstrap.min.css" rel="stylesheet"/>
<section class="header">
<div class="container-fluid" id="heading-cont">
<div class="row">
<div class="col-sm-12 my-auto">
<h1 class="title white text-center">Digital</h1>
<h4 class="description white text-center">This is the description.</h4>
</div>
</div>
</div>
</section>
あなたは正しかったです。言葉遣いは申し訳ありません、まだ初心者です。これは完全に働いた!本当にありがとう。私がそうすることができるようになったら、正しいものとしてマークします。 –