【发布时间】:2022-06-22 02:43:48
【问题描述】:
当我在 <p> 标记中包含填充时,它不起作用。但是,当我尝试将其添加到功能盒类时,它可以完美运行。
<section id="features">
<div class="row">
<div class="feature-box col-lg-4 ">
<i class="fa-solid fa-circle-check "></i>
<h3>Easy to use</h3>
<p >So easy to use, even your dog< could do it.</p>
</div>
<div class="feature-box col-lg-4">
<i class="fa-solid fa-bullseye"></i>
<h3 >Elite Clientele</h3>
<p >We have all the dogs the greatest dogs.</p>
</div>
<div class="feature-box col-lg-4">
<i class="fa-solid fa-heart"></i>
<h3>Guaranteed to work</h3>
<p>Find the love of your dog's lifeyour money back.</p>
</div>
</div>
</section>
【问题讨论】: