I'm trying to remove white space from the background of html page and I have used this code but still facing the same problem!
I'm using angular 7 with node 10 and chrome browser
HTML file...
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
</head>
<body>
Hello World!
</body>
</html>
SCSS file...
$colors: (
primary: #000000,
fonts: #ffffff
);
body {
background-color: map-get($colors,primary);
color: map-get($colors, fonts );
margin: 0;
padding: 0;
}
Aucun commentaire:
Enregistrer un commentaire