<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: 35px;
}
</style>
</head>
<body>
<h1>margin-inline-start 属性</h1>
<div>一个未指定边距的 div 元素。</div>
<div id="ex1">这个 div 元素在行内方向的起始处有 35 像素的边距。</div>
<div>一个未指定边距的 div 元素。</div>
</body>
</html>