<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
#image-shape { | |
float: left; | |
-webkit-shape-outside: url("resources/abe.png"); /* size: 76x103 */ | |
-webkit-font-smoothing: antialiased; | |
margin-right: 100px; /* expose shape-outside failures */ | |
} | |
#content { | |
font: 60px/1 Ahem, sans-serif; | |
color: green; | |
} | |
</style> | |
<p>The green squares should appear to the right of and below Abe's photo.</p> | |
<div id="content"> | |
<img id="image-shape" src="resources/abe.png"/> | |
X<br>X<br>X | |
</div> | |
</body> | |
</html> | |