12-01-2011, 02:21 PM
(06-01-2011, 01:28 PM)Sephi-Chan a écrit : C'est intéressant, mais comme tu l'as indiqué, je préfère utiliser SCSS.
Cela me permet d'écrire :
$header_background: #000;
#header {
background: $header_background;
overflow: hidden;
padding: 10px 0 0;
height: 34px;
h1 {
float: left;
a {
text-decoration: none;
font-size: 20px;
color: #fff;
}
}
}
Qui est compilé en :
#header { background: black; overflow: hidden; padding: 10px 0 0; height: 34px; }
#header h1 { float: left; }
#header h1 a { text-decoration: none; font-size: 20px; color: #fff; }
Sephi-Chan
Oh mais c'est très intéressant ! Merci pour l'astuce !
:good: