html overflow scroll only if needed with exemple

42

p {  
  width: 12em;
  height: 6em;
  border: dotted;
   
  /* le contenu n'est pas rogné */
  overflow: visible;  
}
p {
  /* les ascenseurs sont toujours affichés */
  overflow: scroll;
}

Comments

Submit
0 Comments