文字突出显示后CSS突出显示

时间:2019-02-13 22:28:36

标签: html css wordpress

我正在尝试在CSS中的文本突出显示之间添加断点(该文本不在框中突出显示,而是在行尾之后结束突出显示)

这是当前的样子:

enter image description here

我的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&amp;customize_messenger_channel=preview-0&amp;customize_autosaved=on" target="_self"> Learn how we can help you succeed </a>

当我添加display: inline;时,它会折断,对于顶部,它会完全删除突出显示;对于底部,当按钮执行时,按钮会向上移动到文本的第二段。

1 个答案:

答案 0 :(得分:2)

您可以使用<mark>标签,然后仅编辑其背景颜色。或者,将您的文字换成<span>并为其添加背景。