| ZVON > References > CSS2 Reference |
| Intro / Search / ZVON |
| Property: | overflow |
| Inherited: | no |
| Value: | visible | hidden | scroll | auto | inherit |
| Initial: | visible |
| Applies to: | block-level and replaced elements |
| Media: | visual |
| Percentages: | N/A |
|
<AAA> <BBB>text text <CCC>A very long sentence inside a small amount of text.</CCC> text text </BBB> </AAA> |
View BBB {display: block; width: 40pt; border: solid thin red} CCC {display: block; width: 60pt; overflow: visible; clip : rect(10pt, 50pt, 30pt, 10pt); border: solid thin blue} |
|
<AAA> <BBB>text text <CCC>A very long sentence inside a small amount of text.</CCC> text text </BBB> </AAA> |
View BBB {display: block; width: 40pt; border: solid thin red} CCC {display: block; width: 60pt; overflow: hidden; clip : rect(10pt, 50pt, 30pt, 10pt); border: solid thin blue} |
|
<AAA> <BBB>text text <CCC>A very long sentence inside a small amount of text.</CCC> text text </BBB> </AAA> |
View BBB {display: block; width: 40pt; border: solid thin red} CCC {display: block; width: 60pt; overflow: scroll; clip : rect(10pt, 50pt, 30pt, 10pt); border: solid thin blue} |