blob: fb452666e3c16094945ea5212e66cf04914f47f4 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Test: ::marker pseudo elements styled with 'content' property and display:inline-grid</title>
<link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com">
<link rel="match" href="marker-content-007-ref.html">
<link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#marker-pseudo">
<style>
li {
list-style-position: inside;
}
li::marker {
content: "a" "b";
display: inline-grid;
grid-template-columns: 50px 60px;
}
li::before {
content: "c";
}
li::after {
content: "d";
}
span { font-size: 32pt; }
</style>
</head>
<body>
<ol><li></li><li>B</li><li><span>C</span></li></ol>
</body>
</html>