Skip to content

Instantly share code, notes, and snippets.

View jenshelderweirdt's full-sized avatar

Jens Helderweirdt jenshelderweirdt

View GitHub Profile
<p>Paragraph outside the template!</p> <!--after adding custom-paragraph to the page, all p-elements will take over the template styling-->
<template id="custom-paragraph">
<style>
p {
color: white;
background-color: #666;
padding: 5px;
}
</style>
<p>My custom paragraph</p>
<template id="custom-paragraph">
<p>My custom paragraph</p>
</template>