Witajcie.
Miałem za zadanie zrobić stronę internetową dowolnie rozbudowanej lecz nie mogę używać JavaScript.
Stworzyłem prostą stronę mój problem polega na tym, iż układ strony jest zachowany jedynie przy używaniu IE, lecz otwierając ja na Mozilla niestety układ ten jest zaburzony.
Czy wie ktoś jak to naprawić?
Chętnie posłucham też waszych rad co zmienić co usprawnić, co byście dodali itp.
Podaje kod to strony głównej na razie chce wysłuchać waszych opinii zanim przejdę do dalszych pytań.
Index.html
Kod:
<html>
<head>
<link rel="Stylesheet" type="text/css" href="style.css" />
<title>
</title>
</head>
<body>
<div id="top">
<div id="HEADING"><img width= 780 src="banner.jpg" /></div>
<div id="MENU"><h1>MENU</h1></br>
<ul id="button">
<li><a href="index.html" title="Main Page">Main Page</a></li>
<li><a href="teams.html" title="Teams">Teams</a></li>
<li><a href="#" title="Gallery">Gallery</a></li>
</ul>
</div>
<div id="BODY" hight="500px">The National Basketball Association (NBA) is the pre-eminent men's professional basketball
league in North America which consists of thirty franchised member clubs, of which twenty-nine
are located in the United States and one in Canada. It is an active member of USA Basketball (USAB),
which is recognized by the International Basketball Federation as the National Governing Body (NGB) for
basketball in the United States. The NBA is one of the four major North American professional sports
leagues, which include Major League Baseball (MLB), the National Football League (NFL),
and the National Hockey League (NHL).
The league was founded in New York City on June 6, 1946 as the Basketball Association of America (BAA).
The league adopted the name National Basketball Association in 1949 after merging with the rival National Basketball League (NBL).
The league's several international as well as individual team offices are directed out of its head offices located in the Olympic Tower at 645 Fifth Avenue in New York City.
NBA Entertainment and NBA TV studios are directed out of offices located in Secaucus, New Jersey.
</div>
<div id="END">
<ul>
<li><a href="info.html">Info</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</body>
</html>
Style.css
Kod:
html, body {
background-color: #686868;
color: #fff;
margin: 2.5cm;
padding: 0;
font: 15px, tahoma;
}
#top {
width: 780px;
}
#HEADING {
background-color: #888;
}
#MENU {
width: 150px;
float: left;
overflow: hidden;
background-color: #000000;
height: 982px;
border-style: double solid;
border-width: thin;
}
#BODY {
width: 630px;
float: left;
overflow: hidden;
background-color: #000000;
height: 982px;
}
#END {
clear: both;
width: 100%;
background-color: #888;
}
#button {
width: 169px;
font: bold 20px verdana, tahoma, arial, sans-serif;
list-style: none;
margin: 0;
padding: 0;
border: medium none inherit;
}
#button li {
padding: 0;
text-align: left;
}
#button li a {
display: block;
padding: 0 0 0 8px;
border-left: 12px solid #fff;
color: #fff;
text-decoration: none;
width: 100%;
}
#button li a:hover {
border-left: 12px solid FF9966;
color: FF9966;
}
h1 {
font: bold 20px verdana, tahoma, arial, sans-serif;
text-align: center;
}
table {
caption-side: top;
margin: 55px;
}
table td {
}
table caption {
font-size: large;
color:#6CF;
}
table th {
font-size: medium;
}
#END {
width: 740px;
font: bold 20px verdana, tahoma, arial, sans-serif;
list-style: none;
margin: 0;
padding: 0;
border: medium none inherit;
}
#END li {
padding: 0;
text-align: left;
}
#END ul li {
float: left;
}
#END ul li {
display: inline;
white-space: nowrap;
}
#END li a {
display: inline;
padding: 0 0 0 8px;
border-left: 12px solid #fff;
color: #fff;
text-decoration: none;
width: 100%;
}
#END a:hover {
border-left: 12px solid FF9966;
color: FF9966;
}
#table1
{
list-style: none;
margin: 0;
padding: 0;
border: medium none inherit;
}
#table1 td
{
display: block;
padding: 0 0 0 8px;
border-left: 12px solid #fff;
color: #fff;
text-decoration: none;
width: 100%;
}
#table td {
padding: 0;
text-align: left;
}
#table1 td a:hover
{
border-left: 12px solid FF9966;
color: FF9966;
}