PHP beginner |
|
Je moet ook wel bepalen met wat je gaat werken procenten of pixels hoe breed meot hij zijn, moet hij mee bewegen? Dan maak je een 100% div en daar binnen plaats je links 150 en rechts 150.
*edit
heb dit even snel getypt:
<style>
div#wrapper {
width: 100%;
height: 300px;
border: 1px solid black;
}
div#left {
float: left;
width: 150px;
height: 300px;
border: 1px solid black:
border-width: 0 1px 0 0;
}
div#content {
float: left;
height: 300px;
text-align: center;
}
div#right {
float: right;
width: 150px;
height: 300px;
border: 1px solid black;
border-width: 0 0 0 1px;
}
</style>
<div id="wrapper">
<div id="left">Links</div>
<div id="content">Content jka;sjdf klsdjf ;ls</div>
<div id="right">Rechts</div>
</div>
<style> div#wrapper { width: 100%; height: 300px; border: 1px solid black; } div#left { float: left; width: 150px; height: 300px; border: 1px solid black: border-width: 0 1px 0 0; } div#content { float: left; height: 300px; text-align: center; } div#right { float: right; width: 150px; height: 300px; border: 1px solid black; border-width: 0 0 0 1px; } </style> <div id="wrapper"> <div id="left">Links</div> <div id="content">Content jka;sjdf klsdjf ;ls</div> <div id="right">Rechts</div> </div>
|