CodeLab
Show Output
 
xxxxxxxxxx
38
 
1
<!DOCTYPE html>
2
<html lang="en">
3
<head>
4
<meta charset="utf-8">
5
<title>Setting the Position of List Marker</title>
6
<style>  
7
    body{
8
        font-size: 14px;
9
        font-family: Arial,sans-serif;
10
    }
11
    ol li {
12
        background: #ddd;
13
        padding: 5px;
14
        margin: 5px;
15
    }
16
    ol.in li {
17
        list-style-position: inside;
18
    }
19
    ol.out li {
20
        list-style-position: outside;
21
    }
22
</style>
23
</head>
24
<body>
25
    <h2>List Marker Position - Inside</h2>
26
    <ol class="in">
27
        <li>Fasten your seatbelt</li>
28
        <li>Start the car's engine and take a closer look the instrument cluster for any warning sign</li>
29
        <li>Look around carefully and go</li>
30
    </ol>
31
    <h2>List Marker Position - Outside</h2>
32
    <ol class="out">
33
        <li>Fasten your seatbelt</li>
34
        <li>Start the car's engine and take a closer look the instrument cluster for any warning sign</li>
35
        <li>Look around carefully and go</li>
36
    </ol>
37
</body>
38
</html>
 

在微博、微信、公众号、小程序分享此示例。 如果您觉得有帮助,请给我们一个赞。