W3docs

overflow

CSS Property:

Result:

The overflow property defines the behavior content which overflows the element box. This property only works for block elements that have a specified height.

CSS Code:

#myDiv {
background-color:pink;
width:200px;
height:90px;
overflow:hidden;
}

Click the property values above to see the result