CSS box-decoration-break
The box-decoration-break property specifies **how backgrounds and borders are drawn when **broken across multiple lines**. This property has two possible values:
slice: The background and borders of the element are **sliced between lines**.clone: The background and borders of the element are **cloned for each line**.
Let's see some examples to understand how box-decoration-break works:
In the first example, **with** box-decoration-break: slice, the background and border are **sliced** between lines. In the second example, **with** box-decoration-break: clone, the background and border are **cloned** for each line.