mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
8 lines
276 B
HTML
8 lines
276 B
HTML
<!DOCTYPE html>
|
|
<!-- BFC from column-width not being 'auto' -->
|
|
<div style="column-width: 100px"></div>
|
|
<!-- BFC from column-count not being 'auto' -->
|
|
<div style="column-count: 2"></div>
|
|
<!-- BFC from both at once -->
|
|
<div style="column-count: 2; column-width: 100px"></div>
|