Как убрать отступы, добавленные в новые компоненты в angular2. Например:
Здесь выше заголовок моего проекта, но заполнение добавляется автоматически.
Я попытался изменить заполнение на 0 в файле styles.css вне папки приложения:
/* You can add global styles to this file, and also import other style files */
body {
margin: 0;
padding: 0;
}
Мой appcomponent.html выглядит так:
<app-header></app-header>
<router-outlet></router-outlet>
<app-footer></app-footer>
Я также попытался добавить отступ 0 в headercomponent.css:
.body {
background-color: pink;
padding-top: 0px;
}
Headercomponent.html:
<div class="body">
<h1 class="text-center">
Crypcheck
</h1>
<p class="text-center">
Check prices of your favourite cryptocurrencies!
</p>
</div>
Спасибо за чтение.