Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.59 KB | None | 0 0
  1. @charset "UTF-8";
  2. /* CSS Document */
  3.  
  4. body{ margin: 0px; font-family: Arial;}
  5.  
  6.  
  7. #pagina{
  8.     width: 980px;
  9.     background: red;
  10.     margin: auto;
  11.     position: relative;
  12. }
  13.  
  14. #conteudo{
  15.     width: 600px;
  16.     position: relative;
  17.     background: blue;
  18.     left: 50%;
  19.     margin-left: -300px;
  20. }
  21.  
  22. #conteudo p{ margin: 0px;}
  23.  
  24. #texto{ z-index: 9995; position: relative;}
  25.  
  26. #fixo{
  27.     width: 200px;
  28.     height: 300px;
  29.     background: green;
  30.     position: absolute;
  31.     right: 50%;
  32.     margin-right: -100px;
  33. }
  34.  
  35. #menu{
  36.     width: 300px;
  37.     height: 300px;
  38.     background: pink;
  39.     position: fixed;
  40.     top: 100px;
  41.     z-index: 9999;
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement