Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<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>
</html>