Bonjour,
Je viens de refaire ma feuille css en utilisant des rem, mais voici le résultat.
www.cahue.net
Je suppose que c'est du à l'utilisation successive de taille em dans des div imbriqués.
J'ai lu qu'il fallait utiliser des rem pour éviter ce problème.
Comment procéder?
Merci
Je viens de refaire ma feuille css en utilisant des rem, mais voici le résultat.
www.cahue.net
Je suppose que c'est du à l'utilisation successive de taille em dans des div imbriqués.
J'ai lu qu'il fallait utiliser des rem pour éviter ce problème.
Comment procéder?
Merci
/** --- RESET MINIMUM --- */
html {
font-size: 100%;
}
html, body,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dt, dd,
ul, ol, li,
form, fieldset,th, td {
margin: 0;
padding: 0;
}
body {
background-color: #e5e5e5;
color: #444;
font-family: Cambria, Georgia, "Times New Roman", Times, serif;
font-size: 0.75%;
}
html>body {
font-size: 12px;
}
p {
font-size: 1em;
line-height: 1.5;
margin-top: 1.5em;
margin-bottom: 1.5em;
max-width: 360px;
}
/** --- TITRES --- */
h1 {
font-size: 2em;
line-height: 0.75 ;
margin-top: 0;
margin-bottom: 0.75em;
}
h2 {
font-size: 1.5em;
line-height: 1;
margin-top: 1 em;
margin-bottom: 1em;
}
h3 {
font-size: 1.1667em;
line-height: 1.2857;
margin-top: 1.2857em;
margin-bottom: 1.2857em;
}
h4 {
font-size: 1em;
line-height: 1.5;
margin-top: 1.5em;
margin-bottom: 1.5em;
}
h5 {
font-size: 0.8333em;
line-height: 1.8;
margin-top: 1.8em;
margin-bottom: 1.8em;
}
h6 {
font-size: 0.6666em;
line-height: 2.25;
margin-top: 2.25em;
margin-bottom: 2.25em;
}