D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
JacobHsu
Full window
Github gist
#CSS Selectors Result// source http://jsbin.com/lewexu/1
<!DOCTYPE html> <html> <head> <link type="text/css" rel="stylesheet" href="stylesheet.css"/> <title>Result</title> <style id="jsbin-css"> /*Add your CSS below!*/ a:hover{ text-decoration:none; } a:first-child{ color:#CDBE70; } a:nth-child(3){ color:#FFC125; } </style> </head> <body> <!--Add your HTML below!--> <a href="https://www.google.com">link1</a> <a href="https://www.google.com">link2</a> <a href="https://www.google.com">link3</a> <script id="jsbin-source-css" type="text/css">/*Add your CSS below!*/ a:hover{ text-decoration:none; } a:first-child{ color:#CDBE70; } a:nth-child(3){ color:#FFC125; }</script> </body> </html>