614 shaares
1 result
tagged
box
EDIT: Apparemment ça serait une syntaxe LESS (source: http://stackoverflow.com/q/13608855/1524913 ). Je suppose donc que c'est juste jsFiddle qui l'intègre par défaut. Ok ok, fair enough.
Tiens, j'avais jamais vu cette syntaxe CSS O.o
#box{
width: 200px;
height: 200px;
left: 100px;
top: 100px;
background:blue;
position: absolute;
-moz-transform: rotate(10deg); -webkit-transform: rotate(10deg); transform: rotate(10deg);
z-index: 10!important;
&:after{
content: "";
width: 100px;
background: orange;
height: 100px;
position: absolute;
left: 120px;
top: 120px;
z-index: -2!important;
}
}
Le &:after mais je suppose que ça ne se limite pas à ça :o
En faite, je suis entrain de chercher comment retourner un background, j'ai trouvé, mais ça perturbe z-index apparemment :/
(via http://stackoverflow.com/q/11962301/1524913 )
Tiens, j'avais jamais vu cette syntaxe CSS O.o
#box{
width: 200px;
height: 200px;
left: 100px;
top: 100px;
background:blue;
position: absolute;
-moz-transform: rotate(10deg); -webkit-transform: rotate(10deg); transform: rotate(10deg);
z-index: 10!important;
&:after{
content: "";
width: 100px;
background: orange;
height: 100px;
position: absolute;
left: 120px;
top: 120px;
z-index: -2!important;
}
}
Le &:after mais je suppose que ça ne se limite pas à ça :o
En faite, je suis entrain de chercher comment retourner un background, j'ai trouvé, mais ça perturbe z-index apparemment :/
(via http://stackoverflow.com/q/11962301/1524913 )