10 lines
234 B
HTML
10 lines
234 B
HTML
<!doctype html>
|
|
<div id="host"></div>
|
|
<script>
|
|
host.attachShadow({ mode: "open" }).innerHTML = `
|
|
<style>
|
|
input > *|* { color: red !important; }
|
|
</style>
|
|
<input type="text" value="Should not be red">
|
|
`;
|
|
</script>
|