2 boxe ved siden af hinanden (CSS)

Tags:    html css

<< < 12 > >>
Hej alle sammen jeg er igang med et design hvor jeg ska have et top logo en venstre menu og så noget indhold.
men jeg kan ik få Menu'en og indhold's boxene til at stå ved siden af hinanden.. nogen der kan hjælpe ?

******Index.html********
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>JB-Rustfri.dk</title>
<link href="css.css" rel="stylesheet" type="text/css" />
<base target="iframe" />
</head>

<body>
<div id="box">
<div id="top"></div>

<div id="indhold">Content for id "indhold" Goes Here</div>
<div id="menu">
<a href="forside/index.htm">Forside</a><br />
<a href="profil/index.htm">Profil</a><br />
<a href="produkter/index.htm">Produkter</a><br />
<a href="galleri/index.htm">Galleri</a><br />
<a href="kontakt/index.htm">Kontakt</a><br />
</div>

</div>
</body>
</html>


******CSS.css********
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-style: normal;
color: #333333;
background-color: #e0e0e0;
background-repeat: no-repeat;
text-align: left;
}
#box {
height: 540px;
width: 720px;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
border-top-color: #d4d4d4;
border-right-color: #d4d4d4;
border-bottom-color: #d4d4d4;
border-left-color: #d4d4d4;
margin:0px auto 3px;
background-color: #FFFFFF;
left: 15%;
right: 15px;
}#top {
height: 108px;
width: 688px;
margin-top: 10px;
margin-left: 20px;
margin-right: 20px;
background-image: url(images/top.jpg);
background-repeat: no-repeat;
background-position: center top;
}#menu {
height: 364px;
width: 129px;
border-right-width: 1px;
border-right-style: solid;
border-right-color: #c3c3c3;
}

a:link {
color: #333333;
text-decoration: none;
cursor: default;
}
a:visited {
text-decoration: none;
color: #333333;
cursor: default;
}
a:hover {
text-decoration: underline;
color: #3E78BA;
cursor: default;
}
a:active {
text-decoration: none;
color: #68CCFE;
cursor: default;#indhold {
height: 300px;
width: 573px;
margin-left: 135px;
}
#indhold {
height: 200px;
width: 500px;
margin-left: 135px;
}




18 svar postet i denne tråd vises herunder
6 indlæg har modtaget i alt 6 karma
Sorter efter stemmer Sorter efter dato
så nu fik jeg 2 boxe ind.. i dreamweaver ser det helt perfeckt ud.. men når jeg ser i internet explore eller firefox ser det mærkeligt ud

her min nye kode

*******Index.html**********
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>JB-Rustfri.dk</title>
<link href="css.css" rel="stylesheet" type="text/css" />
<base target="iframe" />
</head>

<body>
<div id="box">
<div id="top"></div>

<div class="menu">Menu<br />
Menu<br />
Menu<br />
Menu<br />
Menu<br />
Menu</div>
<div class="indhold"><iframe src="" name="iframe" scrolling="auto">hej</iframe></div>

</div>
</body>
</html>


*******CSS.css**********
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-style: normal;
color: #333333;
background-color: #e0e0e0;
background-repeat: no-repeat;
text-align: left;
}
#box {
height: 540px;
width: 720px;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
border-top-color: #d4d4d4;
border-right-color: #d4d4d4;
border-bottom-color: #d4d4d4;
border-left-color: #d4d4d4;
margin:0px auto 3px;
background-color: #FFFFFF;
left: 15%;
right: 15px;
}#top {
height: 108px;
width: 688px;
margin-top: 10px;
margin-left: 20px;
margin-right: 20px;
background-image: url(images/top.jpg);
background-repeat: no-repeat;
background-position: center top;


a:link {
color: #333333;
text-decoration: none;
cursor: default;
}
a:visited {
text-decoration: none;
color: #333333;
cursor: default;
}
a:hover {
text-decoration: underline;
color: #3E78BA;
cursor: default;
}
a:active {
text-decoration: none;
color: #68CCFE;
cursor: default;#indhold {
height: 300px;
width: 573px;
margin-left: 135px;
}
.indhold {
float: right;
width: 579px;
border: 1px solid red;
height: 540px;
margin-left: 5px;
margin-right: 20px;
margin-top: 5px;
}

.menu {
float: left;
width: 100px;
margin-left: 20px;
height: 500px;
margin-top: 5px;
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
border-right-color: #CCCCCC;
}




Jimmi det virker .. men jeg vil gerne have at den ene box (indhold) ska være større end den anden.. hvordan gør jeg så det ?


Mener du width og height? ellers må du lige uddybe dit ønske :)



Tak Christian :D. Nu virker den i firefox men i internet explore kommer der sån en scroll ude i kanten af designet :S nye kode:

***index.html***
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>JB-Rustfri.dk</title>
<link href="css.css" rel="stylesheet" type="text/css" />
<base target="iframe" />
</head>

<body>
<div id="box">
<div id="top"></div>
<div id="menu">Menu<br />
Menu<br />
Menu<br />
Menu<br />
Menu<br />
Menu</div>
<div id="indhold">
<iframe src="" name="iframe" width="100%" height="100%" frameborder="0" scrolling="auto"></iframe>
</div>
</div>
</body>
</html>


***css.css***
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-style: normal;
color: #333333;
background-color: #e0e0e0;
background-repeat: no-repeat;
text-align: left;
}

#box {
overflow: auto;
width: 720px;
border: 1px solid #d4d4d4;
background-color: #FFFFFF;

margin: 0 auto;
padding: 0px 0px 20px 0px;
}

#top {
height: 108px;
width: 688px;
margin-top: 10px;
margin-left: 20px;
margin-right: 20px;
background-image: url(images/top.jpg);
background-repeat: no-repeat;
background-position: center top;
}

#indhold {
float: right;
width: 569px;
height: 540px;
margin-left: 5px;
margin-right: 20px;
margin-top: 5px;
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
}

#menu {
float: left;
width: 100px;
margin-left: 20px;
height: 500px;
margin-top: 5px;
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
border-right-color: #CCCCCC;
}




et lille råd brug
Fold kodeboks ind/udKode 




der er ik nogen kode ?



er:
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
font-style: normal;
color: #333333;
background-color: #e0e0e0;
background-repeat: no-repeat;
text-align: left;
}

#box {
overflow: auto;
width: 720px;
border: 1px solid #d4d4d4;
background-color: #FFFFFF;

margin: 0 auto;
padding: 0px 0px 20px 0px;
}

#top {
height: 108px;
width: 688px;
margin-top: 10px;
margin-left: 20px;
margin-right: 20px;
background-image: url(images/top.jpg);
background-repeat: no-repeat;
background-position: center top;
}

#indhold {
float: right;
width: 569px;
height: 540px;
margin-left: 5px;
margin-right: 20px;
margin-top: 5px;
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
}

#menu {
float: left;
width: 100px;
margin-left: 20px;
height: 500px;
margin-top: 5px;
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
border-right-color: #CCCCCC;
}
ikke nogen kode?
brug
Fold kodeboks ind/udKode 




Indlæg senest redigeret d. 28.04.2007 12:55 af Bruger #11596
Simon - jeg skal bruge iframe..

Nørd - jeg kan altså ik se nogen kode inde i den der box du har lavet.. kan jeg ik få din msn eller sån noget ?



der er ik nogen kode ?


Det er heller ikke meningen, at der skal være nogen kode, han mente bare at du skulle sætte din kode ind i en kode boks.



<< < 12 > >>
t