Skip to content

Instantly share code, notes, and snippets.

@sumbad
Created July 3, 2017 16:35
Show Gist options
  • Save sumbad/392023dc2717716aa63465cc18d68e40 to your computer and use it in GitHub Desktop.
Save sumbad/392023dc2717716aa63465cc18d68e40 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Shadow DOM</title>
<style>
input {
border-color: red;
margin: 10px;
}
</style>
</head>
<body>
<input type="text" />
<div id="hello"></div>
<input type="text" />
<script>
let $helloDiv = document.getElementById('hello');
$helloDiv.attachShadow({
mode: "open"
});
$helloDiv.shadowRoot.innerHTML =
`<style>
input {
border: none;
}
</style>
<input type="text" value="hello"/>`;
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment