Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Reference: box-decoration-break: clone inline line breaking</title>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css">
<style>
.container {
width: 100px;
font: 10px/1 Ahem;
background: lightgray;
}
span {
border-right: 40px solid blue;
box-decoration-break: clone;
}
</style>
<div class="container">
<span>x x x<br>x x</span>
</div>