Css problems in Firefox
-
I am working on redesigning a little and adding in a sidebar. I want the whole thing centered under a header div. It works in IE but not in Firefox and I can’t figure out why! I have the header div, content div and menu div inside a rap div. Problem is, the rap is only containing the header in Firefox. The content and menu divs are outside the rap. I have quadruple checked the placement of the divs in the index file and they are right. I don’t get it! Here is the css code I’m trying to work with…
#header {
background: url(https://www.ten-seventeen.net/test/title.jpg) no-repeat;
width: 750px;
height: 150px;
align: center;
}
#rap {
margin: 0 auto 10px auto;
text-align: left;
padding: 0px;
width: 750px;
background: #fff;
border: 1px solid #ccc;
}
#content {
float: left;
width: 500px;
overflow: hidden;
padding: 15px 15px 5px 15px;
background-color: #fff;
color: #666;
font-size: 11px;
text-align: left;
}
.post {
color: #666;
font-size: 11px;
text-align: justify;
padding:15px;
margin: 0px;}
#menu {
float: left;
background: #eee;
margin: 10px;
padding: 5px;
width: 170px;
overflow: hidden;
}
Does anyone see why it isn’t working in Firefox?? Here is the url of the test page… https://ten-seventeen.net/test/index.php
Thanks!!
- The topic ‘Css problems in Firefox’ is closed to new replies.