| ZVON > References > CSS2 Reference |
| Intro / Search / ZVON |
| Property: | visibility |
| Inherited: | no |
| Value: | visible | hidden | collapse | inherit |
| Initial: | inherit |
| Applies to: | all elements |
| Media: | visual |
| Percentages: | N/A |
|
<AAA> <BBB> <CCC> <cell>Note the difference:</cell> </CCC> <DDD> <cell>ddd</cell> </DDD> <EEE> <cell>eee</cell> </EEE> </BBB> </AAA> |
View AAA {display: table} BBB {display: table-row-group} BBB * {display: table-row} CCC, EEE {visibility: visible} DDD {visibility: hidden} cell {display: table-cell} |
|
<AAA> <BBB> <CCC> <cell>Note the difference:</cell> </CCC> <DDD> <cell>ddd</cell> </DDD> <EEE> <cell>eee</cell> </EEE> </BBB> </AAA> |
View AAA {display: table} BBB {display: table-row-group} BBB * {display: table-row} CCC, EEE {visibility: visible} DDD {visibility: collapse} cell {display: table-cell} |