Answers for "overflow: hidden; 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
0

html overflow scroll only if needed with exemple

p {  
  width: 12em;
  height: 6em;
  border: dotted;
   
  /* le contenu n'est pas rogné */
  overflow: visible;  
}
Posted by: Guest on October-30-2020

Browse Popular Code Answers by Language