blob: 1254f084e682fd921362d1a1379f0f926ad305c6 [file] [log] [blame]
<html>
<head>
<style>
.shape {
font: 30px/1 Ahem, sans-serif;
-webkit-font-smoothing: antialiased;
color: green;
margin: 20px;
}
.content-box {
background-clip: content-box;
background-color: red;
width: 90px;
height: 90px;
}
.rounded-content-box {
background-clip: content-box;
background-color: grey;
width: 90px;
height: 90px;
border-radius: 30px;
}
</style>
</head>
<body>
<p>Check that shape-inside:content-box works correctly.</p>
<div class='shape content-box'>XXX XXX XXX</div>
<div class='shape rounded-content-box'>&nbsp;X<br>XXX<br>&nbsp;X</div>
</body>
</html>