There are 3 elements involved:
<button class="a"></button>
<div class="b"></div>
<button class="c"></button>
The style defined for these elements is as follows:
.a {
width: 30px;
}
.c {
width: 50px;
float:right;
}
I am looking to ensure that the div .b appears inline without line breaks, with a width that maximizes the available space between .a and .c.
I prefer not using absolute positioning for this. Any suggestions?