I'm working with the following layout:-
html:-
<header>
<div class="content-wrapper">
<div id="headerContainer">
<div class="headerProfileNotifications">
<img src="Images/" alt="notification" />
</div>
<div class="headerProfilePhoto">
<img src="Images/" alt="profile_photo" />
</div>
<div class="headerProfileDetails">
<div class="headerProfileName">John Smith</div>
<div class="headerProfileEmail"><a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="274d484f4909544a4e534f6754484a24c">[email protected]</a></div>
</div>
</div>
</div>
and css:-
header {
padding-bottom: 5px;
}
#headerContainer {
height: 33px;
background-position: 10px 2px;
padding-top: 2px;
}
.headerProfileNotifications {
float: right;
height: 22px;
width: 29px;
padding-right: 4px;
margin: 5px;
}
.headerProfilePhoto {
float: right;
height: 33px;
width: 22px;
margin: 5px;
}
.headerProfileDetails {
float: right;
padding-right: 4px;
font-size: 11px;
}
.headerProfileName {
margin-top: 2px;
float: right;
}
.headerProfileEmail {
margin-top: 0px;
}
Everything looks fine in Chrome/Firefox,
but there's an issue in IE,
where it displays differently.
What adjustments do I need to make to the css
for IE
to match the appearance in Chrome/Firefox?
Appreciate your assistance and time!