Pomoc - Szukaj - Użytkownicy - Kalendarz
Pełna wersja: [HTML][CSS]wysrodkowanie tekstu w menu
Forum PHP.pl > Forum > Przedszkole
jackuss
Nie mam pomyslu jak wysrodkowac odnosniki w menu, moze ktos pomoze?



oto kod:

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
  3. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  4. <title>.:[Title]:.</title>
  5. <link rel="stylesheet" type="text/css" href="style.css" />
  6. </head>
  7.  
  8. <div id="strona">
  9.  
  10. <div id="banner">
  11. banner
  12. </div>
  13.  
  14. <div id="menu">
  15. <ul>
  16. <li> <a href="link1.php">Link1</a> </li>
  17. <li> <a href="link2.php">Link2</a> </li>
  18. <li> <a href="link3.php">Link3</a> </li>
  19. <li> <a href="link4.php">Link4</a> </li>
  20. </ul>
  21. </div>
  22.  
  23. </div>
  24. </body>
  25. </html>



  1. #strona
  2. {
  3. width: 900px;
  4. margin: auto;
  5. padding: 0px;
  6. }
  7.  
  8. #banner
  9. {
  10. display: table-cell;
  11. vertical-align: middle;
  12. width: 900px;
  13. height: 100px;
  14. background-color: blue;
  15. text-align: center;
  16. }
  17.  
  18. #menu
  19. {
  20. width: 900px;
  21. height: 50px;
  22. background-image: url(grafika/menu.png);
  23. }
  24.  
  25. #menu ul
  26. {
  27. list-style: none;
  28. margin: 0px;
  29. padding: 0px;
  30. }
  31.  
  32. #menu ul li
  33. {
  34. float: left;
  35. height: 50px;
  36. width: 100px;
  37. }
  38.  
  39. #menu a:link, #menu a:visited
  40. {
  41. height: 50px;
  42. text-align: center;
  43. text-decoration: none;
  44. display: block;
  45. background-image: url(grafika/menu2.png);
  46. }
  47.  
  48. #menu a:hover
  49. {
  50. background-image: url(grafika/menu1.png);
  51. }
potreb
line-height, paddingi
jackuss
z paddingiem mi sie rozjezdzalo ale line-height pomoglo, dzieki wink.gif
To jest wersja lo-fi głównej zawartości. Aby zobaczyć pełną wersję z większą zawartością, obrazkami i formatowaniem proszę kliknij tutaj.
Invision Power Board © 2001-2025 Invision Power Services, Inc.