我需要幫助讓我的H1對齊。我的代碼如下。它的圖像也在下面。我希望頂部的斯賓塞Hiltbrand位能夠一路走到最前面。美麗的網站,鼓舞人心的攝影部分現在是相同的。我正在使用Bootstrap。Bootstrap H1對齊問題
.intro {
color: white;
font-weight: 600;
text-align: left;
font-size: 80px;
margin-left: 45px !important;
padding-top: 380px;
}
.name {
text-align: right !important;
}
<!-- Intro Section -->
<section id="intro" class="intro-section">
<div class="container">
<div class="row">
<div class="col-lg-12">
<h1 class="name"><span class="red">Spencer</span> Hiltbrand</h4>
<h1 class="intro"><span class="red">Beautiful</span> Websites, <br>and <span class="red">Inspiring</span> Photography</h1>
</div>
</div>
</div>
</section>
將'text-right'類添加到'h1'標籤?另外你爲什麼要把一個容器放在一個部分內。這是相反的。更何況,你不關閉你的'h1'標籤,你有''而不是... – Darren