Nieuw lid |
|
Ik snap je vraag niet zo goed, maar als ik je css test, dan lijkt het toch aardig op wat jij wilt ?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>blaat</title>
<style type="text/css">
div#startcontainer { /*container*/
margin: 0 0 20px 0;
padding: 0;
width: 517px;
border: solid 1px black; /*testing only*/
}
div#introcontent { /*linkse div*/
text-align: left;
margin: 0;
padding: 0 20px 0 0;
width: 320px;
border-right: 3px solid #4176C4;
float: left;
font-size: 11px;
}
div#ondertekening { /*rechtse div*/
text-align: left;
padding: 0 0 0 20px;
width: 154px;
border: 0;
float: right;
font-style: italic;
font-size: 11px;
margin: 0;
border-left: 3px solid #4176C4;
}
</style>
</head>
<body>
<div id="startcontainer">
<div id="introcontent">links</div>
<div id="ondertekening">rechts</div>
<div style="clear:both;"></div>
</div>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> div#startcontainer { /*container*/ margin: 0 0 20px 0; padding: 0; width: 517px; border: solid 1px black; /*testing only*/ } div#introcontent { /*linkse div*/ text-align: left; margin: 0; padding: 0 20px 0 0; width: 320px; border-right: 3px solid #4176C4; float: left; font-size: 11px; } div#ondertekening { /*rechtse div*/ text-align: left; padding: 0 0 0 20px; width: 154px; border: 0; float: right; font-style: italic; font-size: 11px; margin: 0; border-left: 3px solid #4176C4; } <div id="startcontainer"> <div id="introcontent">links </div> <div id="ondertekening">rechts </div> <div style="clear:both;"></div>
een clear erbij gegooit (en een test bordertje)
edit, ah ik zie net dat je op een ander forum ook deze vraag had gesteld en daar had je al een clear erbij zitten....
Dan begrijp ik je vraag gewoon niet
edit2: daar nog eens gereageerd (iets anders) |