<html>
<head>
<style>
div {
border: 1px solid red;
box-sizing: border-box;
width: 300px;
}
div.ex1 {
margin-bottom: 20px;
padding-inline-start: 50px;
}
</style>
</head>
<body>
<h1>The padding-inline-start Property</h1>
<div class="ex1">This div element has a padding of 50 pixels at the start in the inline direction.</div>
<div>This div element has no specified padding.</div>
</body>
<!-- Mirrored from www.w3schools.com/cssref/tryit.php?filename=trycss_padding-inline-start by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 17:37:58 GMT -->
</html>