| font: 30px/1 Ahem, sans-serif; |
| -webkit-font-smoothing: antialiased; |
| -webkit-shape-outside: content-box; |
| background-clip: content-box; |
| border: 10px solid transparent; |
| -webkit-shape-outside: padding-box; |
| background-clip: padding-box; |
| border: 15px solid transparent; |
| -webkit-shape-outside: border-box; |
| background-clip: border-box; |
| border: 5px solid transparent; |
| border-right-width: 10px; |
| -webkit-shape-outside: margin-box; |
| border: 3px solid transparent; |
| <p>These tests set the shape-outside to the various boxes (margin/border/padding/content). They require the Ahem font. You should see green squares, with no red.</p> |
| <p>shape-outside: content-box</p> |
| <div class='shape content-box'></div> |
| <p>shape-outside: padding-box</p> |
| <div class='shape padding-box'></div> |
| <p>shape-outside: border-box</p> |
| <div class='shape border-box'></div> |
| <p>shape-outside: margin-box</p> |
| <div class='shape margin-box'></div> |