Answers for "css overflow x"

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

overflow-x hidden meaning in css

The overflow-x property specifies whether to clip the content, 
add a scroll bar, or display overflow content of a block-level element,
when it overflows at the left and right edges.
Posted by: Guest on January-14-2021

Browse Popular Code Answers by Language