<!DOCTYPE html> | |
<style> | |
.container { | |
color: black; | |
font: 20vw/1 Ahem; | |
} | |
.float { | |
width: 40vw; | |
height: 40vw; | |
float: left; | |
background-color: grey; | |
-webkit-shape-outside: inset(0vw 24vw 0vw 0vw); | |
-webkit-shape-margin: 4vw; | |
} | |
</style> | |
<body> | |
<div class="container"> | |
<div class="float"></div> | |
X<br/> | |
X | |
</div> | |
</body> |