R
R
RobinB2014-11-12 11:14:05
css
RobinB, 2014-11-12 11:14:05

Why does @extend work but not @include?

.header-prev{
@include all-icons-sprites(arrow-left);
position: absolute;
bottom: -35px;
left: 0;
&:hover{
@include all-icons-sprites(arrow-left-h);
}
/* Here's how it works...*/
.header-prev{
@extend .icons-arrow-left;
position: absolute;
bottom: -35px;
left: 0;
&:hover{
@extend .icons-arrow-left-h;
}
}
Koala compiles both code without errors.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
V
Vitaly Sorokin, 2014-11-12
@VitalySorokin

Most likely a problem with the mixin. It would be nice to see his source)

S
Sergey V, 2019-12-11
@SergioNV4

In less the same crap

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question