J'ai une classe utilisée sur un article
et un section
Balise HTML5.
Sur la maison :
<article class="exit">
<a href="exit.php">
<figure class="box">
<img src="assets/img/projects/exit-m.jpg" alt="">
<figcaption>…</figcaption>
</figure>
</a>
</article>
Sur la page du projet :
<section class="page project exit">
<div class="corner nw intro">
<figure class="box">
<img src="assets/img/projects/exit.jpg" alt="">
<figcaption>…</figcaption>
</figure>
</div>
…
Chaque élément avec la classe quitter ont un figure
élément HTML5 à l'intérieur. Avec Less, j'utilise ce code pour faire ce que je veux.
article.exit{width:260px; height:200px; top:315px; left:505px;
figure{background-color:@exit-bg;}
.box:hover{.perspective-box(se, 10, @exit-shadow);}
}
section.exit{
.box:hover{.perspective-box(nw, 10, @exit-shadow);}
.intro figcaption:hover{background:@exit-hover;}
}
Mais je dois préciser si c'est un article
ou un section
! J'ai beaucoup de classes comme ça et c'est un peu ennuyeux
Existe-t-il une solution pour faire quelque chose comme ça ? Ce serait très cool
.exit{
&article{
width:260px; height:200px; top:315px; left:505px;
figure{background-color:@exit-bg;}
.box:hover{.perspective-box(se, 10, @exit-shadow);}
}
§ion{
.box:hover{.perspective-box(nw, 10, @exit-shadow);}
.intro figcaption:hover{background:@exit-hover;}
}
}