D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
elidiazgt
Full window
Github gist
guide - Simple tutorial - html + css + js
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>JS Bin</title> <style></style> <script></script> <style id="jsbin-css"> div{ color:red; font-size:30px; } ul{ color:blue; } p{ color:green; } div, p{ color:yellow; } .grupo{ color:brown; } #capaunica{ color:blue; font-size:10px; } </style> </head> <body> CSS TUTO <div class='grupo'>capa <ul class='grupo' id='unica'>lista</ul> <p class='grupo'>parrafo</p> <a href='/contacto'>enlace</a> <img></img> <div>capa2</div> <div id='capaunica'>capa3</div> <p>parrafo 2</p> </div> <script id="jsbin-source-css" type="text/css">div{ color:red; font-size:30px; } ul{ color:blue; } p{ color:green; } div, p{ color:yellow; } .grupo{ color:brown; } #capaunica{ color:blue; font-size:10px; }</script> </body> </html>