-
-
Save RFSync/840c1cf1fd9ea5fe6c59515c1eaeca91 to your computer and use it in GitHub Desktop.
// source http://jsbin.com/binixep
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<link ref="stylesheet" type="text/css" src="style.css"> | |
<style id="jsbin-css"> | |
div { | |
width: 150px; | |
height: 150px; | |
border: 2px solid black; | |
display: inline-block; | |
margin: 20px; | |
} | |
#name { | |
background: black; | |
} | |
#hex { | |
background: #000000; | |
} | |
#rgb { | |
background: rgb(0,0,0); | |
</style> | |
</head> | |
<body> | |
<div id="name"></div> | |
<div id="hex"></div> | |
<div id="rgb"></div> | |
<script id="jsbin-source-css" type="text/css">div { | |
width: 150px; | |
height: 150px; | |
border: 2px solid black; | |
display: inline-block; | |
margin: 20px; | |
} | |
#name { | |
background: black; | |
} | |
#hex { | |
background: #000000; | |
} | |
#rgb { | |
background: rgb(0,0,0); | |
</script> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
div { | |
width: 150px; | |
height: 150px; | |
border: 2px solid black; | |
display: inline-block; | |
margin: 20px; | |
} | |
#name { | |
background: black; | |
} | |
#hex { | |
background: #000000; | |
} | |
#rgb { | |
background: rgb(0,0,0); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment