x
 
<!DOCTYPE html>
<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-start: 50px;
  direction: rtl;
}
</style>
</head>
<body>
<h1>margin-inline-start 属性</h1>
<p>在这里,margin-inline-start 属性受到 CSS direction 属性的影响。</p>
<div>一个没有指定外边距的 div 元素。</div>
<div id="ex1">这个 DIV 元素在行内方向的起始处有 50 像素的外边距。</div>
<div>一个没有指定外边距的 div 元素。</div>
</body>
</html>