first-line-on-list-item-with-block-children-ref.html (366B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 <title>CSS Reference: ::first-line on list item with block children</title> 4 <link rel="author" title="Minseong Kim" href="mailto:jja08111@gmail.com"> 5 <style> 6 #test::first-line { 7 background: yellow; 8 } 9 </style> 10 <body> 11 <ol> 12 <li> 13 <div id="test">First line</div> 14 <div>Second line</div> 15 </li> 16 </ol> 17 </body>