HTML
CSS
JavaScript
<div class='container'><h1 class='heading'>Hello World</h1><p class='text'>This is a demonstration of the inset-block-start property.</p></div>
.container { display: block; border: 2px solid #333; padding: 20px; } .heading { inset-block-start: 30px; } .text { margin-top: 10px; }
// No JavaScript required for this demo
Hello World
This is a demonstration of the inset-block-start property.