我試圖讓文字在整個黃色空間內垂直居中。正如他們的文檔中所建議的那樣,我一直試圖在行上實現「align-items-center」,以及「my-auto」類。我不知道我做錯了什麼。如何使用Bootstrap 4將文本垂直置於「col-sm-12」內?
#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>
你是對的。對不起,仍然是初學者。這工作完美雖然!非常感謝。一旦允許我這樣做,將會標記爲正確。 –