mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-25 16:59:01 +09:00
19 lines
194 B
HTML
19 lines
194 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
li {
|
|
list-style-position: inside;
|
|
-moz-column-count: 2;
|
|
column-count: 2;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
|
|
<ul>
|
|
<li>Test (inside).</li>
|
|
</ul>
|
|
|
|
</body>
|
|
</html>
|