Gradient on the border
Put a gradient on the element's border
Styling the hero sections’ header used to be difficult when the text was supposed to have some form of decoration, like a background with padding or a border. Those properties were not translated well when the amount of content required the introduction of multiple lines. The style was clipped in the wrong places and the overall look was bad. By default, the content is rendered as a continuous strip of style that’s cut by scissors and moved to another line. Just take a look at the example below.
Thankfully we live in the future, so now this is no longer an issue. We now have the box-decoration-break
property, making it so easy to treat each line as a separate entity with its own, contained styles. Apply the clone
value and you’re good to go.
box-decoration-break
has two possible values: slice
and clone
. The first one is the default. It treats the element broken into separate lines as one, long strip and slices it to fit into multiple lines. clone
—on the other hand—makes each line separate so all CSS properties apply individually.
.box-decoration-clone {
-webkit-box-decoration-break: clone;
box-decoration-break: clone;
}
If you’re using Tailwind, the classes you’re interested in are: box-decoration-slice
and box-decoration-clone
.
Decoration cloning applies to backgrounds, borders, border images, box shadows, clip paths, margins, and paddings.
Browser support for this feature is pretty good, although to target Chrome, Safari, Edge, and Opera you need to use the -webkit-
prefix.