Quote:
Originally Posted by xmlgirl
div.fig {
display: table;
float: right;
}
div.fig p {
display:table-caption;
caption-side:bottom;
}
div.figgroup fig {float:left;}
div.figgroup {float:right;}
|
Ahhh, I see what you want now. I think there is a conflict with your floats. (underlined above) div.fig is floating them right, while div.figgroup fig is floating left.
I assume it's a typo in your example, but just make sure div.figgroup fig is actually named as "div.figgroup
div.fig"
I haven't tested that, but I hope it helps.