Glubase - share your knowledge


All / Computers / Programming / CSS





  • View Command

CSS Reference

CSS overflow definition

Syntax

overflow: visible | hidden | scroll | auto

Description

The overflow property defines what happens to the content of an element if it is overflown (not enough space for it).

Values

Value Description
visible This is the default value. The content is not clipped. It renders outside the element
hidden The content is clipped, but the browser does not display a scroll-bar to see the rest of the content.
scroll The content is clipped, but the browser displays a scroll-bar to see the rest of the content.
auto If the content is clipped, the browser should display a scroll-bar to see the rest of the content.

Version information

Available since CSS 2.0.

  • Comments

No comments added.