mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
52 lines
1.2 KiB
HTML
52 lines
1.2 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head>
|
|
<title>CSS Multi-column Layout Test: multi-column and list-item</title>
|
|
<link rel="author" title="Opera Software ASA" href="http://www.opera.com/">
|
|
<link rel="reviewer" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/"> <!-- 2013-08-10 -->
|
|
<link rel="help" href="http://www.w3.org/TR/css3-multicol/#pseudo-algorithm" title="3.4 Pseudo-algorithm">
|
|
<link rel="match" href="reference/multicol-list-item-001-ref.htm">
|
|
<meta name="flags" content="ahem">
|
|
<meta name="assert" content="This test checks that an unordered list of list items can be set to display its list-items in column boxes.">
|
|
<style type="text/css">
|
|
ul
|
|
{
|
|
background-color: black;
|
|
font: 1.25em/1 Ahem;
|
|
margin: 0em;
|
|
padding: 0em;
|
|
width: 10em;
|
|
|
|
column-gap: 0em;
|
|
column-width: 5em;
|
|
}
|
|
|
|
li, span {font-size: 1em;}
|
|
|
|
li
|
|
{
|
|
margin-left: 1em;
|
|
padding: 0em;
|
|
}
|
|
|
|
span {display: block;}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<ul>
|
|
<li>1sli</li>
|
|
<li>2nli</li>
|
|
<li>3rli</li>
|
|
<li>4tli</li>
|
|
<li>5tli</li>
|
|
<li><span>6tli</span></li>
|
|
<li>7tli</li>
|
|
<li>8tli</li>
|
|
<li>9tli</li>
|
|
<li>10tl</li>
|
|
</ul>
|
|
|
|
</body>
|
|
</html> |