summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-pseudo/marker-content-016-ref.html
blob: 963049765a415694258f31587f58779185dc3e68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Reference: ::marker pseudo elements styled with 'content' property</title>
<link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com">
<style>
ol {
  list-style-type: "[marker]";
  text-decoration: underline;
  padding-left: 100px;
}
.inside {
  list-style-position: inside;
}
</style>
<ol>
  <li class="outside">outside</li>
  <li class="inside">inside</li>
</ol>