html overflow scroll only if needed with exemple code example
Example 1: html overflow scroll only if needed with exemple
p {
/* les ascenseurs sont toujours affichés */
overflow: scroll;
}
Example 2: html overflow scroll only if needed with exemple
p {
width: 12em;
height: 6em;
border: dotted;
/* le contenu n'est pas rogné */
overflow: visible;
}