link href="scaffold/parse.php?file=/test.css" rel="stylesheet"
head
body
p class="aa"
rrrrrrrrrrr
/p
/body
html
rob-linux-laptop# cat const.css
@constants
{
bb: red; /* red */
}
rob-linux-laptop# cat test.css
@include './const.css';
p.aa{
color: $bb;
}
When I open the browser I have got the:
rrrrrrrrrrr
without red
Hi everybody,
rob-linux-laptop# cat test.html " html head
link href="scaffold/parse.php?file=/test.css" rel="stylesheet" head body p class="aa" rrrrrrrrrrr /p /body html rob-linux-laptop# cat const.css @constants { bb: red; /* red */ } rob-linux-laptop# cat test.css @include './const.css';
p.aa{ color: $bb; }
When I open the browser I have got the: rrrrrrrrrrr without red
In page source i click: http://example.com/scaffold/parse.php?file=/test.css
and receive:
@include './const.css';p.aa{color: $bb}
this is $bb not red
What wrong with my cod?
I use: php 5.3.2 apache 2.2.14
(I omit httm tags) For any suggestion I greatly appreciate
Best regars Robert (sorry for my england)