ContentEditable Test

Testing out the contentEditable property

by conzett

HTML

<section contenteditable="true"> 
    <h2>Go ahead, edit away!</h2> 
    <p>Here's a typical paragraph element</p> 
    <ol> 
      <li>and now a list</li> 
      <li>with only</li> 
      <li>three items</li> 
    </ol> 
</section>

CSS

ol{
    list-style-type: decimal;
    background-color: red;
}