Nieuw lid |
|
Ik zou graag willen dat de strokes van 2 DIV's samen vallen namelijk in alle browesers van Div content en Div sidebarright. Nu lukt het me maar altijd in één browser maar niet in allemaal tegelijk. Hoe zou ik dat het beste oplossen Mvg, William
<div id="content">
<div id="example">
<div id="slides">
<div class="slides_container">
<img src="images/img1.jpg" width="470" height="350" alt="Slide 1">
<img src="images/img2.jpg" width="470" height="350" alt="Slide 2">
<img src="images/img3.jpg" width="470" height="350" alt="Slide 3">
<img src="http://slidesjs.com/examples/standard/img/slide-4.jpg" width="470" height="350" alt="Slide 4">
<img src="http://slidesjs.com/examples/standard/img/slide-5.jpg" width="570" height="270" alt="Slide 5">
<img src="http://slidesjs.com/examples/standard/img/slide-6.jpg" width="570" height="270" alt="Slide 6">
<img src="http://slidesjs.com/examples/standard/img/slide-7.jpg" width="570" height="270" alt="Slide 7">
</div>
<a href="#" class="next"><img src="img/arrow-next.png" width="24" height="43" alt="Arrow Next"></a>
<a href="#" class="prev"><img src="img/arrow-prev.png" width="24" height="43" alt="Arrow Prev" /></a></div>
<img src="img/example-frame.png" width="470" height="350" alt="Example Frame" id="frame">
</div>
</div>
<div id="sidebarright">
<ul class="social"><a href="#"><img src="images/fb.png" width="32" height="32" alt="facebook" /></a>
<a href="#"><img src="images/twit.png" width="32" height="32" alt="twitter" /></a>
<a href="#"><img src="images/word.png" width="32" height="32" alt="wordpress" /></a>
</ul>
<ul><p></p></ul>
</div>
<div class="slides_container"> <img src="images/img1.jpg" width="470" height="350" alt="Slide 1"> <img src="images/img2.jpg" width="470" height="350" alt="Slide 2"> <img src="images/img3.jpg" width="470" height="350" alt="Slide 3"> <img src="http://slidesjs.com/examples/standard/img/slide-4.jpg" width="470" height="350" alt="Slide 4"> <img src="http://slidesjs.com/examples/standard/img/slide-5.jpg" width="570" height="270" alt="Slide 5"> <img src="http://slidesjs.com/examples/standard/img/slide-6.jpg" width="570" height="270" alt="Slide 6"> <img src="http://slidesjs.com/examples/standard/img/slide-7.jpg" width="570" height="270" alt="Slide 7"> <a href="#" class="next"><img src="img/arrow-next.png" width="24" height="43" alt="Arrow Next"></a> <a href="#" class="prev"><img src="img/arrow-prev.png" width="24" height="43" alt="Arrow Prev" /></a></div> <img src="img/example-frame.png" width="470" height="350" alt="Example Frame" id="frame"> <ul class="social"><a href="#"><img src="images/fb.png" width="32" height="32" alt="facebook" /></a> <a href="#"><img src="images/twit.png" width="32" height="32" alt="twitter" /></a> <a href="#"><img src="images/word.png" width="32" height="32" alt="wordpress" /></a>
/*Content*/
#content {
float: left;
width: 470px;
margin: 0px;
padding: 10px 10px;
margin-top:40px;
margin-left:15px;
border-top:white solid 2px;
}
/*Sidebarright*/
#sidebarright {
float: right;
width: 255px;
margin-top:0px;
margin:0;
padding:0;
}
#sidebarright ul {
margin: 0;
padding: 2.98px;
list-style: none;
}
#sidebarright ul.social {
margin: 0;
list-style: none;
border-bottom:white solid 2px;
}
/*Content*/ #content { float: left; width: 470px; margin: 0px; padding: 10px 10px; margin-top:40px; margin-left:15px; border-top:white solid 2px; } /*Sidebarright*/ #sidebarright { float: right; width: 255px; margin-top:0px; margin:0; padding:0; } #sidebarright ul { margin: 0; padding: 2.98px; list-style: none; } #sidebarright ul.social { margin: 0; list-style: none; border-bottom:white solid 2px; }
|