blob: 8c16057bf1c0681df29c271f9b44ac47355c694c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<style>
div {
column-count: 3;
column-gap: 8px;
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>
|