forked from M3-Academy/challenge-landing-page
15 lines
248 B
CSS
15 lines
248 B
CSS
/*=== Por que criei esse arquivo ===*/
|
|
/* Mas legível quais tags eu declarei com propriedades padrão */
|
|
|
|
/* reset all tags */
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
display: block;
|
|
} |