doc_flexbox_pseudos.html (419B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <style> 4 .container { 5 width: 300px; 6 height: 150px; 7 margin: 10px; 8 display: flex; 9 } 10 11 .container::before, 12 .container::after { 13 color: #f06; 14 border: 1px solid #f06; 15 background: gold; 16 padding: 1em; 17 } 18 19 .container::before { 20 content: "::before pseudo-element item"; 21 } 22 23 .container::after { 24 content: "::after pseudo-element item"; 25 } 26 </style> 27 <div class="container"></div>