I've set up an example of what I'm running into here: http://studiozion.com/cssproblem/fix_it.htm.
Relevant code blocks...
<style type="text/css">
body
{
background: transparent url(Grade300_Color1.png) repeat-x
}
.RowMaker
{
overflow: auto;
}
.ColumnMaker
{
float: left;
}
.ColumnMaker2
{
float: right;
}
.PadTop
{
padding-top: 10px;
}
.PadBot
{
padding-bottom: 10px;
}
.PadLeft
{
padding-left: 15px;
}
.PadRight
{
padding-right: 15px;
}
.ControlCurve1
{
height: 6px;
background: transparent url(ControlCurve1.png) no-repeat right -6px
}
.ControlCurveRight1
{
height: 6px;
width: 6px;
background: transparent url(ControlCurve1.png) no-repeat top left
}
.ControlCurveLeft1
{
height: 6px;
width: 6px;
background: transparent url(ControlCurve1.png) no-repeat bottom left
}
</style>
<div class="RowMaker">
<div class="ColumnMaker ControlCurveLeft1"><span></span></div>
<div class="ColumnMaker ControlCurve1">
<div class="RowMaker">
<div class="ColumnMaker2 ControlCurveRight1"><span></span></div>
</div>
</div>
</div>
So the issue is that the div with class "ColumnMaker ControlCurve1" will expand to fill the width of parent container with class "RowMaker" in IE creating a nice little beveled cap for a div. But in Firefox the "ColumnMaker ControlCurve1" div truncates causing the right side of the beveled cap to be left aligned.
So who is right? And more importantly how do I go about fixing this while retaining the flexibilty of a visual element that expands to it's parent container? I really don't want to set a hard width on "ColumnMaker Control1".