doc_custom.html (781B)
1 <!-- Any copyright is dedicated to the Public Domain. 2 http://creativecommons.org/publicdomain/zero/1.0/ --> 3 <html> 4 <head> 5 <style> 6 #testidSimple { 7 --background-color: blue; 8 } 9 .testclassSimple { 10 --background-color: green; 11 } 12 13 .testclassImportant { 14 --background-color: green !important; 15 } 16 #testidImportant { 17 --background-color: blue; 18 } 19 20 #testidDisable { 21 --background-color: blue; 22 } 23 .testclassDisable { 24 --background-color: green; 25 } 26 </style> 27 </head> 28 <body> 29 <div id="testidSimple" class="testclassSimple">Styled Node</div> 30 <div id="testidImportant" class="testclassImportant">Styled Node</div> 31 <div id="testidDisable" class="testclassDisable">Styled Node</div> 32 </body> 33 </html>