
05.10.2023, 01:45
|
|
Познающий
Регистрация: 04.10.2023
Сообщений: 41
С нами:
1376200
Репутация:
0
|
|
There's a valid reason for using reset.css or similar? I never understood the necessity of this, I mean the default styles are there for some reason.
Since I started learning html/css I was always recommended to only use the "classic reseting":
Код:
Код:
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
a {
text-decoration: none;
}
button {
cursor: pointer;
}
|
|
|