When testing draft or experimental properties, you need to test for vendor prefix versions. For flowed columns, support is incomplete, but Gecko (-moz-) and Webkit (-khtml-) have implemented the basics. The Webkit engine drops the list markers for some reason (Safari/Win v 3.5 and 4b).
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xml:lang="en"
xmlns="http://www.w3.org/1999/xhtml"
lang="en">
<head>
<meta name="generator"
content=
"HTML Tidy for Linux (vers 7 December 2008), see www.w3.org" />
<title>Flowed columns</title>
<meta http-equiv="content-type"
content="text/html; charset=utf-8" />
<meta name="author"
content="Gary Turner" />
<style type="text/css">
/*<![CDATA[*/
ul, ol {
-ms-column-count: 2;
-o-column-count: 2;
-moz-column-count: 2;
-khtml-column-count: 2;
column-count: 2;
}
/*]]>*/
</style>
</head>
<body>
<ul>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
</ul>
<ol>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
<li>item</li>
</ol>
</body>
</html>
cheers,
gary
Bookmarks