CSS 哪个属性指定了标记框和主框之间的最近边界距离
在CSS中,’marker-offset’ CSS属性用于指定标记框和主框的最近边界距离。在CSS中,标记是指列表的项目符号。
在这里,我们将学习如何设置标记框和主框之间的最近边界距离。
语法
用户可以按照以下语法设置标记框和主框之间的最近边界距离。
marker-offset: value;
示例1
在下面的示例中,我们创建了一个包含不同编程语言的无序列表。同时,我们使用了‘marker-offset’ CSS属性来设置标记框与主要框之间的最近边缘距离。
<html>
<head>
<style>
.list {
marker-offset: 2em;
}
</style>
</head>
<body>
<h3> Using the <i> marker-offset CSS property </i> to specifies the distance between nearest border edges of marker box and principal box in CSS </h3>
<ul class = "list">
<li> JavaScript </li>
<li> HTML </li>
<li> CSS </li>
<li> C </li>
<li> CPP </li>
</ul>
</body>
</html>
示例2
在这个示例中,我们使用了‘marker-offset’ CSS属性来设置有序列表的偏移量。我们应用了一个‘2cm’的偏移量,表示2厘米。
<html>
<head>
<style>
.list {
marker-offset: 2cm;
}
</style>
</head>
<body>
<h3> Using the <i> marker-offset CSS property </i> to specifies the distance between nearest border edges of marker box and principal box in CSS </h3>
<ol class = "list">
<li> English </li>
<li> Hindi </li>
<li> Gujarati </li>
<li> Marathi </li>
<li> Urdu </li>
</ol>
</body>
</html>
用户学会使用”marker-offset” CSS属性来设置标记框与主要框之间的最近边距。