I am currently facing a challenge with my landing page design. The positioning of a specific div element seems to be correct in Internet Explorer, but it is misaligned in Chrome. Is there a way to ensure consistent display across different browsers? The problematic div with id="selfService" is not displaying correctly in Chrome.
Upon inspecting the CSS file, it appears that the 'bottom: 90%;' property in the #selfService selector is not functioning as expected in Chrome, while it works perfectly in IE. What could be causing Chrome to disregard the 'bottom: 90%;' declaration?
#container5 {
margin: auto;
width: 100%;
background-repeat: no-repeat;
height: 25em;
border-bottom: 3em solid #0175c9;
}
...