x
 
<!DOCTYPE html>
<html>
<head>
<style>
div {
  background-color: rgb(239, 135, 88);
  width: 25%;
  height: 200px;
  float: left;
}
#ex1 {
  background-color: lightblue;
  border: solid black 1px;
  margin-inline: 35px;
}
</style>
</head>
<body>
<h1>margin-inline 属性</h1>
 
<div>一个未指定外边距的 div 元素。</div>
 
<div id="ex1">这个 div 元素在行内方向的两边都有 35 像素的外边距。</div>
 
<div>一个未指定边距的 div 元素。</div>
</body>
</html>