Forum Moderators: not2easy
<div class="inline">
<div class="fieldsetTitle">Title</div>
<div class="fieldsetBackground">
Some elements in here
</div>
</div>
<div class="inline">
<div class="fieldsetTitle">2nd Title</div>
<div class="fieldsetBackground">
Some more elements in here
</div>
</div>
.fieldsetTitle {
background-color: #C1C8D2;
font-color: black;
font-size: 10pt;
font-weight: bold;
text-align: left;
padding: 0.5em;
}
.fieldsetBackground {
background-color: #F3F4F7;
padding: 1em;
}
div.inline {
display: inline;
vertical-align: top;
border: 0;
}
In IE, instead of having two boxes side by side, they stretch to the width of the entire page, one below the other. I have tried several other display parameters and I can't seem to get this to work. Does anyone have any sort of suggestion that could maybe put me on to the right path?