Back to Lit

⌲ Examples ⌲ Basic

packages/lit-starter-ts/docs-src/examples/index.md

1.3.0301 B
Original Source
<style> my-element p { border: solid 1px blue; padding: 8px; } </style> <my-element> <p>This is child content</p> </my-element> <h3>CSS</h3>
css
p {
  border: solid 1px blue;
  padding: 8px;
}
<h3>HTML</h3>
html
<my-element>
  <p>This is child content</p>
</my-element>