Advertisement
csfeijo

geral.css

Jul 30th, 2020
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.61 KB | None | 0 0
  1. body {
  2.   /* então: ../ significa que vc deve SAIR um nível para trás para entrar na outra pasta */
  3.   /* o caminho é sempre RELATIVO ao arquivo que estou trabalhando! */
  4.   background: url(../img/background.jpg);
  5.   /* se quiser mudar o tamanho de um background pode usar o size (mas com cuidado!) */
  6.   /* background-size: 100% 20%; */
  7.   /* por padrão zeramos a margin e o padding do body */
  8.   margin: 0;
  9.   padding: 0;
  10. }
  11.  
  12. header {
  13.   background: #ede1b7;
  14.   /* min-height: no minimo XX de altura, se alguma coisa DENTRO do elemento for maior que 100 */
  15.   /* ele vai se esticar sozinho! */
  16.   min-height: 100px;
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement