summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-pseudo/marker-content-007-ref.html
blob: 8cec2799c2e0218e2e0c796ee4589b64d732cb39 (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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Reference: ::marker pseudo elements styled with 'content' property and display:inline-grid</title>
<link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
<style>
li {
  list-style-position: inside;
  list-style-type: none;
}
li::before {
  content: "ab";
  display: inline-block;
  width: 50px;
  text-align: right;
  padding-right: 60px;
}
li::after {
  content: "d";
}
span { font-size: 32pt; }
</style>
</head>
<body>
<ol><li>c</li><li>cB</li><li>c<span>C</span></li></ol>
</body>
</html>