mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
311 B
HTML
18 lines
311 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
div {
|
|
-moz-column-count: 3;
|
|
-moz-column-gap: 8px;
|
|
-moz-column-rule: thick solid red;
|
|
visibility: hidden;
|
|
width: 300px;
|
|
background-color: #fcc;
|
|
}
|
|
span {
|
|
visibility: visible;
|
|
}
|
|
</style>
|
|
<div>
|
|
<span>This is some content that is still shown within the columns.</span>
|
|
</div>
|