I have a footer where I have a rounded left image, then a middle with repetition and finally a rounded right image.
How can I achieve perfect flexible scaling without overlapping? Something like:
.paperBottom.middle {float:left; width: (100% -40px)}(40px is the width of the right image)
Setup:
<div class="paperBottomWrapper">
<div class="paperBottom left"> </div>
<div class="paperBottom middle"> </div>
<div class="paperBottom right"> </div>
</div>
The problem is that the left and right have rounded graphics, and they should all blend in well.
source
share