Skip to content

Instantly share code, notes, and snippets.

@parmentelat
Created January 27, 2021 23:07
Show Gist options
  • Save parmentelat/15f75fbb8d555bef4ceaa9a8f0e41d3d to your computer and use it in GitHub Desktop.
Save parmentelat/15f75fbb8d555bef4ceaa9a8f0e41d3d to your computer and use it in GitHub Desktop.
// source https://jsbin.com
<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>
* {
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