1
Good afternoon, I’m starting with Angular 2 and I’m having a problem to remove the margins of the body from 8px, I tried to include in the body tag of css margin:0, but it came to nothing.
Could you help me?
Here’s the body tag that’s in my css Component app
body,html {
margin: 0;
font-family: "Montserrat Light";
font-size: 16px;
height: 100%;
}
And here the app.component.ts
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
}
The codes you posted are not working, you could review?
– Marcell Alves