jeudi 6 juin 2019

remove white space from web page background

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!

result

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