Hey Forum- Question for you.
I’m developing a muti-column layout and for some reason Safari 2 breaks (text no longer wraps in left sidebar) when using CSS. No issues with any other browser on any platform (minus IE5 MAC/Windows which we all know bites).
Please take a look at this very basic example:
http://www.work-ed.com/multicolumn/column_study_withoutpadding.html
Any suggestions would be greatly appreciated! THANKS!
Here’s the code:
<html>
<head>
<title>HELP!</title>
<style type="text/css">
#wrapper {
height: 1000px;
width: 800px;
}
#sidebar {
background-color: #ECECEC;
height: 100px;
width: 250px;
margin: 0px;
padding: 10px;
border: 0px;
position: absolute;
max-width: 250px;
}
#frame_nav {
position: absolute;
background-color: #CCC;
height: 900px;
width: 250px;
margin-top: 100px;
padding: 10px;
border: 0px;
max-width: 250px;
}
#content {
position: relative;
float: right;
background-color: #999;
margin: 0px;
height: 1000px;
width: 550px;
padding: 10px;
border: 0px;
max-width: 550px;
}
/* this allows zilla to render boxs like IE. (padding applied to inside of box)*/
div {
-moz-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<div id="wrapper">
<div id="sidebar">"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
</div>
<!--sidebarLeft-->
<div id="frame_nav">"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
</div>
<!--frame_nav-->
<div id="content">"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua."
</div>
</div> <!--wrapper-->
</body>
</html>