I currently have these CSS styles:
body {
padding: 0;
margin: 0;
font-family: bentonsans-regular, sans-serif;
font-size: 14px;
background-image: url(../affiliate/amex/images/background.png);
background-repeat: repeat-y;
background-position: top left;
}
#header {
position: fixed;
left: 150px;
top: 50px;
}
#footer {
position: fixed;
left: 150px;
right: 50px;
bottom: 10px;
height: 100px;
line-height: 10px;
font-size: 10px;
}
My goal is to convert the measurements from px
to %
, but I am unsure of the best approach to do this accurately. I came across a tool that converts from px
to em
, which wasn't quite what I needed. If anyone has any suggestions, advice, or solutions on how to achieve this conversion accurately, please point me in the right direction. Thank you!