I'll start studying LESS, but the problem is that I can not move to the first step.
If I put <link rel="stylesheeet/less"...>
does not work. Only work if I put <link rel="stylesheeet"...>
without /less
.
I've been reading and seen that it could work if I rolled on top of WAMP. It still did not work. Has anyone had this problem and can you 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;
}