As I work on scripting some CSS, I have come across a small challenge where the right margin seems smaller than the left one despite both being set at 5%!
This issue is occurring while using Firefox version 35.0.1.
body {
width: 100%;
padding: 0;
margin-top: 5%;
background: #fff;
}
#main-content {
float: left;
width: 57%;
background: #a7cbd3;
margin-left: 5%;
min-height: 777px;
}
#side {
float: right;
width: 33%;
background: #0081a9;
margin-right: 5%;
min-height: 777px;
}
Any suggestions or advice to fix this issue would be greatly appreciated!
Thank you for your help in advance!