CSS Overflow Property

Posted The: 15/01/2009 At: 10:44

The Overflow Property of CSS is used to control the content of a box, if it takes up more space then what is in the box.

Possible Values

visibleThe content is rendered outside the element.
hiddenThe content is clipped.
scrollThe browser displays a scroll bar, to view the rest of the content.
scrollThe browser should display a scroll bar, to view the rest of the content.

Example

h1 {
  overflow: scroll;
}

Inherited? NO!

Comments: [0]

© Brugbart Webdesign