作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
所以我通过 Bootstrap 对一段文本应用了一些填充。但是,当该行通过 < br > 转到下一行时,该行之后的填充将不再适用。
具体针对该问题的代码如下:
<div class="col-sm-12 d-sm-flex d-md-inline align-items-sm-center justify-content-sm-center ">
<div class="py-md-20 mx-md-10">
<span class="py-sm-40 px-sm-20 px-md-70">
Before any Service or Repair we will carry out a full check of the bike to ensure the bike is safe and you <br> are getting the service that best suits you and your bike.
</span>
<span>
<button class="b-button__outline text-bg-info"> Book Assessment </button>
</span>
</div>
</div>
请注意,需要外部样式表才能准确查看正在发生的事情。因此,https://codepen.io/nisofwareengineer/pen/ExxyoVR应该可以帮助您更详细地了解问题。
文本“正在获得最适合您和您的自行车的服务”。 '' 似乎没有任何填充。
我做错了什么?
最佳答案
尝试
span {
display: block;
}
或
span {
display: inline-block;
}
关于html - 如何确保填充也影响所有行而不仅仅是第一行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58415362/
我是一名优秀的程序员,十分优秀!