Check out the jsfiddle link for live preview: http://jsfiddle.net/dazakip/u7d59901/
.nav {
float: left;
width: calc(100% - 75px);
height: 10px;
padding-left: 5px;
padding-bottom: 10px;
background-color: green;
}
.checkout{
float: right;
width: 75px;
height: 10px;
padding-bottom: 10px;
background-color: red;
}
I am specifically looking for help with this code. I want the two divs to sit next to each other and remain fixed regardless of resizing. Please see the preview in the link provided.
Appreciate your assistance!