如何通过 CSS 在文本后面添加突出显示,使其看起来像下面的 Instagram-one?

Yar*_*sky 1 html css

我对 CSS\HTML 很陌生。我如何通过 CSS 做同样的事情:

Instagram 亮点

我试过这个:

.works_title {
  display: inline;
  padding: 3px;
  font-size: 28px;
  font-weight: 700;
  color: aliceblue;
  background-color: #000;
  border-radius: 4px;
}


body {
 max-width:300px;
}
Run Code Online (Sandbox Code Playgroud)
<div class="works_title">Something long, like a title with bunch of letters</div>
Run Code Online (Sandbox Code Playgroud)

但它看起来不像在 Instagram 故事编辑器中的样子。我在网络中需要这样的东西。谢谢!

Tem*_*fif 5

您可以使用box-decoration-break: clone;然后考虑使用 SVG 过滤器来使效果更好。

更新stdDeviation变量以控制形状:

.works_title {
  display: inline;
  padding: 4px 6px;
  line-height:1.4; /* adjust this to avoid overlapping the padding */
  font-size: 28px;
  font-weight: 700;
  color: aliceblue;
  background-color: red;
  border-radius: 4px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  filter: url('#instagram');
}
.no-filter {
  filter:none;
}

body {
  max-width: 250px;
}
Run Code Online (Sandbox Code Playgroud)
<div class="works_title">Something longlike a title with bunchofletters a more text</div>
<br>
<br>
<div class="works_title no-filter">Something longlike a title with bunchofletters a more text</div>

<svg style="visibility: hidden; position: absolute;" width="0" height="0" xmlns="http://www.w3.org/2000/svg" version="1.1">
    <defs>
        <filter id="instagram">
            <feGaussianBlur in="SourceGraphic" stdDeviation="5" result="blur" />    
            <feColorMatrix in="blur" mode="matrix" values="1 0 0 0 0  0 1 0 0 0  0 0 1 0 0  0 0 0 20 -8" result="goo" />
            <feComposite in="SourceGraphic" in2="goo" operator="atop"/>
        </filter>
    </defs>
</svg>
Run Code Online (Sandbox Code Playgroud)

CSS 高亮文本 Instagram 样式