Answers for "what is meant by overflow in css"

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
-1

css overflow

.my-div{
  overflow: hidden;
}
.my-div-1{
  overflow-x: hidden;/* Overflow from the div horizanlty will be hidden*/
  overflow-y: hidden;/* Overflow from the div vertically will be hidden*/
}
.scroll-div{
  height: 150px
  overflow: scroll;
  /* Add scrollbar to the div when its height exceded 150px*/
  /* Can be used horizanlty or vertically according to your layout*/
}
Posted by: Guest on June-14-2021

Code answers related to "what is meant by overflow in css"

Browse Popular Code Answers by Language