blob: a2eb9c3259556fd2ce8d7cc07ca93bea6f829cdf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
<style>
ul {
list-style: none;
padding: 0;
margin: 0;
border: 1px solid black;
display: inline-block;
}
li {
display: inline;
}
::after
{
background-color: lightgreen;
}
.ttt li::after
{
content: " * ";
}
.ttt li:last-child::after
{
content: none;
}
</style>
<ul class="ttt">
<li class="ttt">item1</li>
<li class="ttt">item2</li>
<li class="ttt">item3</li>
</ul>
|