Advertisement
piffy

HTML CSS Esempio posizione

Sep 1st, 2013
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.32 KB | None | 0 0
  1. <head><style type="text/css">
  2. #fondo { position:fixed; right:0; bottom:10; }
  3. #statico { position:fixed; left:30; top:40; }
  4. #testa { position:absolute; left:300; top:100; }
  5. </style> </head>
  6. <body>
  7. <div id="testa">Testo</div>
  8. <div id="fondo">Sempre in basso</div>
  9. <div id="statico">Non scorre</div>
  10. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement