I've been conducting testing on a website across Chrome, Firefox, and Internet Explorer, utilizing the CSS code snippet below:
#foot_links1, #foot_links2, #foot_links3 {
position: absolute;
margin-top: 55px;
margin-top: 14em;
color: #02102f;
font-family: Arial;
}
#foot_links1 {
left: 335px;
}
#foot_links2 {
left: 630px;
}
#foot_links3 {
left: 830px;
}
While foot_links1
, foot_links2
, and foot_links3
are supposed to align in a straight line, their positioning is inconsistent across different browsers.
Any suggestions on how to fix this issue?