Witaj Gościu! ( Zaloguj | Rejestruj )

Forum PHP.pl

> [HTML] Poprawne wyśrodkowanie DIV'ów
in5ane
post
Post #1





Grupa: Zarejestrowani
Postów: 1 335
Pomógł: 34
Dołączył: 9.11.2005
Skąd: Wrocław

Ostrzeżenie: (10%)
X----


Elo, chciałbym się poprawnie używać xHTML'a i zaczynam od kompletnych podstaw. Jak mam prawidłowo coś takiego wyśrodkować?

  1. <?xml version="1.1" encoding="utf-8"?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <link rel="stylesheet" type="text/css" href="style.css" />
  6. <?xml-stylesheet type="text/css" href="style.css" ?>
  7. <title>Test</title>
  8. </head>
  9. <body xml:lang="pl">
  10.  
  11. <div id="header">
  12. GÓRA
  13. </div>
  14.  
  15. <div id="left">
  16. LEWA
  17. </div>
  18.  
  19. <div id="content">
  20. ŚRODEK
  21. </div>
  22.  
  23. <div id="footer">
  24. DÓŁ
  25. </div>
  26.  
  27. </body>
  28. </html>


  1. body {
  2. text-align: center;
  3. }
  4.  
  5. div {
  6. border: 1px solid;
  7. width: 50%;
  8. text-align: left;
  9. margin: 0 auto 0 auto;
  10. }
  11.  
  12. div#header {
  13. height: 100px;
  14. width: 600px;
  15. background-color: #000000;
  16. }
  17.  
  18. div#left {
  19. height: 400px;
  20. width: 100px;
  21. background-color: #ff0000;
  22. float: left;
  23. }
  24.  
  25. div#content {
  26. height: 400px;
  27. width: 600px;
  28. background-color: #ffde00;
  29. }
  30.  
  31. div#footer {
  32. height: 50px;
  33. width: 600px;
  34. background-color: #00c6ff;
  35. }


Ja już tutaj zastosowałem wyśrodkowanie, ale jest problem, że div o nazwie left jest do lewej, a on ma być też na środku, ale do lewej części środka.


--------------------
> > > Tworzenie stron < < <
Go to the top of the page
+Quote Post

Posty w temacie


Reply to this topicStart new topic
1 Użytkowników czyta ten temat (1 Gości i 0 Anonimowych użytkowników)
0 Zarejestrowanych:

 



RSS Aktualny czas: 21.08.2025 - 09:01