This article will give you an in-depth understanding of the box-decoration-break attribute. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to everyone.
In the past two days, I came into contact with a very interesting CSS property -- box-decoration-break
. Let’s go find out together below.
Because there is no Chinese document about this attribute on MDN, I have been thinking of a reasonable and appropriate Chinese translation. Literal translation:
- box -- box, can be understood as the element box model
- decoration -- decoration, understood as the element style
- break -- line break, reference
word-break
, understood as the expression of line break
Then, this attribute can first be understood as the expression of the element's style when line break occurs.
The English explanation on MDN is: The box-decoration-break CSS property specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages. The general idea is that the box-decoration-break attribute specifies how an element fragment should be rendered when a line break/break occurs.
There are only two optional values:
{ box-decoration-break: slice; // 默认取值 box-decoration-break: clone; }
Line break example
This attribute usually acts on inline elements. Suppose we have the following structure and add a border to it:
<span>ABCDEFGHIJKLMN</span>
span { border: 2px solid #999; }
Well, the effect is as follows, unremarkable:
Okay, continue The next step is break. We break the text in the above line and the style remains unchanged:
<span>ABCD <br>EFG <br> HI<br> JKLMN</span>
The following results are obtained:
O, you can see that the text wraps At the same time, the borders also change accordingly. The first and last rows have 3-sided borders, and the middle two lines only have upper and lower borders. If you put the 4 lines together, you can form Figure 1. This is the normal display effect.
Next, we add the protagonist of this articlebox-decoration-break: clone
:
span { border: 2px solid #999; + box-decoration-break: clone; }
After it takes effect, we will get this result:
box-decoration-break: clone usage summary
Seeing this, we can already roughly understand this attribute What it does:
uses the inline element of box-decoration-break: clone
. If there is a line break display, then each line will have all the complete elements of the original single line. style.
Let’s look at an example to deepen our understanding. There is the following structure, which uses box-decoration-break: clone
with two effects before and after:
<span >每一行 <br/>样式 <br/> 都 <br/> 保持<br/> 完整独立</span>
CodePen Demo -- box-decoration-break
https://codepen.io/Chokcoco/pen/NJKoNq
box-decoration-break: clone The scope of influence of effective styles
Of course, elements using box-decoration-break: clone
will not take effect on every style , will only apply to the following styles:
- background
- border
- border-image
- box-shadow
- clip -path
- margin
- padding
- Syntax
##box-decoration-break: clone actual application
Let’s see if there are any reliable practical application scenarios. <p></p>box-decoration-break: clone to achieve text selection effect
There will be such a scenario, we want to highlight a specific section of text in a multi-line text . At this time, we can nest by
to perform some specific display on the text wrapped by
.
<p>
The <span>box-decoration-break</span> CSS property specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages..Each box fragment is rendered independently with the <span>specified border, padding, and margin wrapping each fragment.</span> The border-radius, border-image, and box-shadow are applied to each <span>fragment independently.</span>
</p>
tag, give it a specific style and add
box-decoration-break: clone, in this way, no matter whether the emphasis copy is newline or not, the emphasis background of each place is the same:
p {
font-size: 22px;
line-height: 36px;
}
span {
background-image: linear-gradient(135deg, deeppink, yellowgreen);
color: #fff;
padding: 2px 10px;
border-radius: 50% 3em 50% 3em;
box-decoration-break: clone;
}
box-decoration-break: clone is not added? Then if there is a line break, the effect will be greatly reduced:
CodePen Demo -- text-decoration-break text selection effect<p></p>https:// codepen.io/Chokcoco/pen/rRaLqo<p></p>
box-decoration-break 每行文字带特定边框
又会有这样的场景,我们希望每一行文案都带有特定的边框样式,像这样:
怎么实现呢?也许可以每一行都是一个 <p></p>
,每一行 <p></p>
设定上述样式。但是如果文本内容不确定,容器的宽度也不确定呢?
这种场景,使用 box-decoration-break
也非常便捷。当然这里有个小技巧,正常而言, box-decoration-break: clone
只对 inline
元素生效,如果我们的文案像是这样包裹在 <p></p>
标签内:
<p> The box-decoration-break CSS property specifies how an element's fragments should be rendered when broken across multiple lines, columns, or pages..Each box fragment is rendered independently with the specified border, padding, and margin wrapping each fragment. The border-radius, border-image, and box-shadow are applied to each fragment independently. </p>
要使 box-decoration-break: clone
对 <p></p>
生效,可以通过设定 <p></p>
的 display: inline
来实现。如此一来,要实现上述效果,我们只需要:
p { display: inline; box-decoration-break: clone; background:linear-gradient(110deg, deeppink 0%, deeppink 98%, transparent 98%, transparent 100%); }
无论文本内容或者容器宽度如何变化,都能完美适配:
CodePen Demo -- box-decoration-break 每行文字带特定边框
https://codepen.io/Chokcoco/pen/gEbMGr?editors=1100
box-decoration-break 结合过渡动画
结合上面的内容,我们还可以考虑将 box-decoration-break
与过渡效果或者动画效果结合起来。
譬如,我们希望当我们 hover 文字内容的时候,一些重点需要展示的文字段落能够被强调展示,可能是这样:
CodePen Demo -- box-decoration-break 过渡动画
https://codepen.io/Chokcoco/pen/ZPGpmd
又或者是这样:
CodePen Demo -- box-decoration-break 结合过渡动画
https://codepen.io/Chokcoco/pen/ZPGpmd
你可以尝试点进 Demo ,然后去掉 box-decoration-break: clone
,会发现效果大打折扣。
兼容性
额,按照惯例兼容性应该都不太行。并且 MDN 也给出了这样的提示:
This is an experimental technology. Check the Browser compatibility table carefully before using this in production.
看看 Can I Use,其实还好,除了 IE 系列全军覆没,所以可以考虑应用在移动端。即便这个属性不兼容,降级展示对页面不会造成什么影响:
另外,本文中,给出的代码都是 box-decoration-break: clone
,CodePen 自带了 autoprefixer
实际中可能需要写成:
{ box-decoration-break: clone; -webkit-box-decoration-break: clone; }
最后
国内看到了大漠老师和张鑫旭大大都已经写过这个属性,大家可以对比着看看,加深理解:
好了,本文到此结束,希望对你有帮助 :)
更多编程相关知识,请访问:编程视频!!
The above is the detailed content of A deep dive into the css box-decoration-break property. For more information, please follow other related articles on the PHP Chinese website!

Here's a container with some child elements:

Flyout menus! The second you need to implement a menu that uses a hover event to display more menu items, you're in tricky territory. For one, they should

"The power of the Web is in its universality. Access by everyone regardless of disability is an essential aspect."- Tim Berners-Lee

In this week's roundup: datepickers are giving keyboard users headaches, a new web component compiler that helps fight FOUC, we finally get our hands on styling list item markers, and four steps to getting webmentions on your site.

The short answer: flex-shrink and flex-basis are probably what you’re lookin’ for.

In this week's look around the world of web platform news, Google Search Console makes it easier to view crawled markup, we learn that custom properties

The IndieWeb is a thing! They've got a conference coming up and everything. The New Yorker is even writing about it:


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

SublimeText3 Linux new version
SublimeText3 Linux latest version

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Dreamweaver CS6
Visual web development tools