Created
November 8, 2016 16:42
-
-
Save anonymous/6e1db6d6ea0d6aed3e832c656cfabf14 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: rgba(0,0,0,.4); | |
</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: rgba(0,0,0,.4); | |
</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: rgba(0,0,0,.4); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment