Answers for "css div scroll overflow"

CSS
18

overflow css

/* To solve overflow issue in IE,
always use properties separately,
do not use short hand */

div {
  overflow-x: hidden;
  overflow-y: auto;
}
Posted by: Guest on May-12-2020
3

overflow in css

div{
overflow: scroll;
}

visible - Default. The overflow is not clipped. The content renders outside the element's box
hidden - The overflow is clipped, and the rest of the content will be invisible
scroll - The overflow is clipped, and a scrollbar is added to see the rest of the content
auto - Similar to scroll, but it adds scrollbars only when necessary
Posted by: Guest on November-19-2021
0

div overlfow scroll

.verticalScroll{
overflow-y: scroll;
max-height: 300px;
}

.horizontalScroll{
overflow-x: scroll;
max-width: 300px;
}
Posted by: Guest on October-05-2021

Browse Popular Code Answers by Language