1221112-2.html (571B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <style> 5 .flexContainer { 6 display: flex; 7 8 /* Just for easier visualization: */ 9 width: 600px; 10 justify-content: space-around; 11 border: 1px solid black; 12 } 13 14 .flexContainer:before { 15 position:absolute; 16 content:'before'; 17 } 18 .flexContainer:after { 19 position:absolute; 20 content:'after' 21 } 22 </style> 23 </head> 24 <body> 25 <div class="flexContainer"> 26 <div class="ordered-item">NormalFlexItem 27 <!-- It's important that this remain unclosed, for some reason. -->