flexbox_generated-ref.html (393B)
1 <!DOCTYPE html> 2 <title>flexbox | flexcontainer vs generated content</title> 3 <link rel="author" href="http://opera.com" title="Opera Software"> 4 <style> 5 div { 6 background: #3366cc; 7 height: 4em; 8 } 9 div::after, p { 10 content: "xxx"; 11 background: yellow; 12 margin: 1em; 13 width: 200px; 14 height: 2em; 15 float: left; 16 } 17 div::after { 18 content: "yyy"; 19 display: block; 20 } 21 </style> 22 23 <div> 24 <p>FAIL</p> 25 </div>