scope-shadow-sharing-ref.html (365B)
1 <!DOCTYPE html> 2 <title>@scope - Shadow DOM with shared style data</title> 3 <style> 4 div { 5 padding: 3px; 6 border: 1px solid; 7 background: red; 8 } 9 10 .blue { 11 background: blue; 12 } 13 14 .green { 15 background: green; 16 } 17 </style> 18 <div><div class="blue"></div></div> 19 <div><div class="green"></div></div> 20 <div><div class="blue"></div></div> 21 <div><div class="green"></div></div>