---
layout: example.11ty.cjs
title: <echart-embed> ⌲ Examples ⌲ Basic
tags: example
name: Basic
description: A basic example
---

<style>
  echart-embed p {
    border: solid 1px blue;
    padding: 8px;
  }
</style>
<echart-embed>
  <p>This is child content</p>
</echart-embed>

<h3>CSS</h3>

```css
p {
  border: solid 1px blue;
  padding: 8px;
}
```

<h3>HTML</h3>

```html
<echart-embed>
  <p>This is child content</p>
</echart-embed>
```
