first-line-with-inline-block-ref.html (285B)
1 <!DOCTYPE html> 2 <style> 3 .outer-f { 4 color: red; 5 } 6 .fl-atomic { 7 display: inline-block; 8 } 9 .inner-f { 10 color: lime; 11 } 12 </style> 13 <div> 14 <span class="outer-f">FIRST</span> <div class="fl-atomic"><span class="inner-f">first</span><br>second</div> <span class="outer-f">FIRST</span> 15 </div>