Created
January 27, 2021 23:07
-
-
Save parmentelat/15f75fbb8d555bef4ceaa9a8f0e41d3d to your computer and use it in GitHub Desktop.
// source https://jsbin.com
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
<style id="jsbin-css"> | |
* { | |
border: 1px solid black; | |
} | |
div { | |
background: red; | |
margin: 30px; | |
} | |
section { | |
margin: 20px; | |
padding: 30px; | |
background: orange; | |
} | |
h1, p { | |
padding: 8px; | |
/* or simply */ | |
background-color: yellow; | |
} | |
<script id="jsbin-source-html" type="text/html"><div> | |
<section> | |
<h1> a title </h1> | |
<p> paragraph </p> | |
</section> | |
</div> | |
</script> | |
<script id="jsbin-source-css" type="text/css">* { | |
border: 1px solid black; | |
} | |
div { | |
background: red; | |
margin: 30px; | |
} | |
section { | |
margin: 20px; | |
padding: 30px; | |
background: orange; | |
} | |
h1, p { | |
padding: 8px; | |
/* or simply */ | |
background-color: yellow; | |
} | |
</body> | |
</html></script> | |
</body> | |
</html> | |
</style> | |
<div> | |
<section> | |
<h1> a title </h1> | |
<p> paragraph </p> | |
</section> | |
</div> |
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
* { | |
border: 1px solid black; | |
} | |
div { | |
background: red; | |
margin: 30px; | |
} | |
section { | |
margin: 20px; | |
padding: 30px; | |
background: orange; | |
} | |
h1, p { | |
padding: 8px; | |
/* or simply */ | |
background-color: yellow; | |
} | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment