My HTML and CSS code is looking fantastic and responsive on all browsers except for IE (specifically tested in IE11). It seems that IE is not interpreting the padding correctly, causing an issue with text placement. To address this problem, I decided to utilize a media query:
@media only screen and (max-width: 1200px) {
/* some css stuff */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
/* Implementing specific CSS for IE within a max-width of 1200px */
}
}
This approach effectively targets the browser; however, it has introduced a new challenge. Since I am making the site responsive without using Bootstrap or any other framework, I rely heavily on media queries. Unfortunately, IE does not support nested media queries.
As a result, my design is no longer as responsive as intended. Are there any alternative solutions or workarounds that I may have overlooked?