我正在尝试在CSS中的文本突出显示之间添加断点(该文本不在框中突出显示,而是在行尾之后结束突出显示)
这是当前的样子:
我的CSS代码是
h2.slide-title{
background: #89ce40;
padding: 0 0 0 !important;
line-height: 1.3;
box-decoration-break: clone;
text-transform: uppercase;
opacity: 0.9;
-webkit-box-decoration-break: clone;
-o-box-decoration-break: clone;
}
.button-medium{
background: #89ce40;
line-height: 1.3;
box-decoration-break: clone;
text-transform: uppercase;
opacity: 0.9;
-webkit-box-decoration-break: clone;
-o-box-decoration-break: clone;
}
HTML是:
<div class="slide-caption">
<div class="slide-content">
<h1><strong>COMPREHENSIVE IT SERVICES YOU CAN TRUST</strong></h1>
</div>
<h2 class="slide-title"> Let us help you develop an IT Optimization Strategy and Define your technological priorities </h2>
<a class="slide-link button button-medium" href="http://18.205.33.160/index.php/itone-method/?customize_changeset_uuid=fde7f902-ae22-4db9-abef-fe976403cdb7&customize_messenger_channel=preview-0&customize_autosaved=on" target="_self"> Learn how we can help you succeed </a>
当我添加display: inline;
时,它会折断,对于顶部,它会完全删除突出显示;对于底部,当按钮执行时,按钮会向上移动到文本的第二段。
答案 0 :(得分:2)
您可以使用<mark>
标签,然后仅编辑其背景颜色。或者,将您的文字换成<span>
并为其添加背景。