Showing posts with label CSS-Overflow-Properties. Show all posts
Showing posts with label CSS-Overflow-Properties. Show all posts

Overflow-Y

Overflow-y in CSS.

Syntax (
overflow-y : values;)
  • overflow-y
  • Values: visible | hidden | scroll | auto
Example:

.class_name{overflow-y : hidden;}

Overflow-X

Overflow-x in CSS.

Syntax (
overflow-x : values;)
  • overflow-x
  • Values: visible | hidden | scroll | auto
Example:

.class_name{overflow-x : hidden;}

Overflow

Overflow in CSS.

Syntax (
overflow : values;)
  • overflow
  • Values: visible | hidden | scroll | auto
Example:

.class_name{overflow : hidden;}