Advertisement
csfeijo

pagina.css

Jul 28th, 2020
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.46 KB | None | 0 0
  1. /* o CSS trabalha / acessa os elementos do HTML usando SELETORES */
  2. /* 1 - diretamente pela tag */
  3. body {
  4.   background: orange;
  5. }
  6. /* 2 - acessar o elemento pelo ID (usamos o # no inicio do seu id) */
  7. #destaque {
  8.   font-family: 'Courier';
  9. }
  10. /* quando queremos aplicar uma MESMA regra a diversos elementos (sem precisar criar um ID para cada um) */
  11. /* usamos o atributo class */
  12. .grandao {
  13.   font-size: 26px;
  14.   font-family: 'Comic Sans MS';
  15.   color: darkred;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement