mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
23 lines
401 B
HTML
23 lines
401 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title>Bug 715203: Multicolumn support in scrolled columns</title>
|
|
<style>
|
|
.columns {
|
|
font-size: 12pt;
|
|
line-height: 1.1;
|
|
-moz-column-width: 40em;
|
|
-overflow-x:auto;
|
|
-moz-column-fill: auto;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="columns">
|
|
<li>one
|
|
<li>two
|
|
<li>three
|
|
</div>
|
|
</body>
|
|
</html>
|