open-details-first-line-2.html (541B)
1 <!DOCTYPE html> 2 <!-- Any copyright is dedicated to the Public Domain. 3 - http://creativecommons.org/publicdomain/zero/1.0/ --> 4 5 <html> 6 <style> 7 summary { 8 display: inline; /* ::first-line appiles only to inline element. */ 9 } 10 11 details::first-line { 12 color: blue; 13 } 14 </style> 15 <body> 16 <details open> 17 <span>This is the details.</span> 18 <summary>Summary 19 <!-- Need ib-split so that the summary has multiple frames. --> 20 <div>Block in summary</div> 21 </summary> 22 </details> 23 </body> 24 </html>