What I am trying to do is create a div and then place 3 div's inside of it to create a 3 columned webpage.
Here is my HTML containing the content part only:
#Content_Left {
height: auto;
padding-left: 10px;
padding-top: 10px;
padding-bottom: 10px;
width: 200px;
float: left;
}
#Content_Center {
height: auto;
padding-left: 10px;
padding-top: 10px;
padding-bottom: 10px;
width: 500px;
float: left;
margin-left: 10px;
margin-right: 10px;
}
#Content_Right {
height: auto;
padding-left: 10px;
padding-right: 10px;
padding-top: 10px;
padding-bottom: 10px;
width: 200px;
float: right;
}
<div id="Content">
<div id="Content_Left">
<h1>Header Here </h1>
<p>Text Goes Here!</p>
</div>
<div id="Content_Center">
<h1>Header Here </h1>
<p>Text Goes Here!</p>
</div>
<div id="Content_Right">
<h1>Header Here </h1>
<p>Text Goes Here!</p>
</div>
</div>
Now, the problem is that this piece of code is displaying the way I want it to in Chrome and IE but not in Firefox. How do I get rid of this problem?