<html>
<head>
<style>
div {
background-color: rgb(239, 135, 88);
width: 25%;
height: 200px;
float: left;
box-sizing: border-box;
}
#ex1 {
background-color: lightblue;
border: solid black 1px;
margin-inline-end: 50px;
direction: rtl;
}
</style>
</head>
<body>
<h1>margin-inline-end 属性</h1>
<p>在这里,margin-inline-end 属性受 CSS direction 属性的影响。</p>
<div>一个未指定边距的 div 元素。</div>
<div id="ex1">这个 DIV 元素在行内方向的末端处有 50 像素的边距。</div>
<div>一个未指定边距的 div 元素。</div>
</body>
</html>