OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <title>List-item as multicol</title> | 4 <title>List-item as multicol</title> |
| 5 <style> |
| 6 .c { display:inline-block; width:1em; } |
| 7 </style> |
5 </head> | 8 </head> |
6 <body style="margin:5em;"> | 9 <body style="margin:5em;"> |
7 <p>You should see the word 'PASS' below.</p> | 10 <p>You should see the word 'PASS' below.</p> |
8 <div style="font-family:monospace; float:left;"> | 11 <div style="font-family:monospace; float:left;"> |
9 <div style="display:list-item;"> | 12 <div style="display:list-item;"> |
10 PASS | 13 <div class="c">P</div><div class="c">A</div><div class="c">S</di
v><div class="c">S</div> |
11 </div> | 14 </div> |
12 </div> | 15 </div> |
13 </body> | 16 </body> |
14 </html> | 17 </html> |
OLD | NEW |