highlight-priority-painting-ref.html (557B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>Highlight priority attribute painting</title> 5 <style> 6 #green-highlight { 7 background-color: green; 8 } 9 .yellow-highlight { 10 background-color: yellow; 11 } 12 .blue-highlight { 13 background-color: blue; 14 } 15 </style> 16 </head> 17 <body> 18 <span id="green-highlight">Green</span> 19 <span class="yellow-highlight">Yellow</span> 20 <span class="blue-highlight">Blue</span> 21 <span class="yellow-highlight">Yellow</span><span class="blue-highlight">-Blue</span> 22 </body> 23 </html>