Edit HTML with inline styles

by dandclark_msft

HTML

<head>
    <style>
        head {
            display: block;
        }
        style[contenteditable] {
            display: block;
        }
    </style>
    <style contenteditable>
        body {
            background-color: lightblue;
        }
    </style>
</head>
<body>
    This is some body text
</body>