<html>
<head>
<style>
div {
border: 1px solid red;
box-sizing: border-box;
width: 300px;
}
div.ex1 {
margin-bottom: 20px;
padding-inline-end: 50px;
}
</style>
</head>
<body>
<h1>The padding-inline-end Property</h1>
<div class="ex1">This div element has a padding of 50 pixels at the end in the inline direction.</div>
<div>This div element has no specified padding.</div>
</body>
</html>