You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/documentation/tutorial/06-bindings/08-contenteditable-bindings/app-a/App.svelte

16 lines
217 B

<script>
let html = '<p>Write some text!</p>';
</script>
<div contenteditable="true" />
<pre>{html}</pre>
<style>
[contenteditable] {
padding: 0.5em;
border: 1px solid #eee;
border-radius: 4px;
}
</style>