5
I’ll start studying LESS, but the problem is I can’t move on to the first step.
If I put the <link rel="stylesheeet/less"...>
does not work. Only work if I put the <link rel="stylesheeet"...>
without the /less
.
I have been reading and I saw that it could work if I rotate on top of the WAMP. Still it didn’t work. Someone has had this problem and can give me a light?
----- HTML -----
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet/less" type="text/css" href="bootstrap.less">
<script src="js/bootstrap.js"></script>
</head>
<body>
</body>
</html>
----- CSS -----
body{
background: url("imagens/bg.jpg") no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
You are testing your page on a server or by opening the HTML file directly?
– Kazzkiq
I tested only by the local server. WAMP. Direct by html, tb did not work.
– Angelo Scali