Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS DOCTYPE, Browser Compatibility, or CSS issue? Reply To: DOCTYPE, Browser Compatibility, or CSS issue?

#158546
Alen
Participant

DOCTYPE should not be the issue. If you have to support older version of IE just use conditional tag to load separate style to fixes the alignment.

so something like

<!--[if IE 7 ]>
  <link href="ie-specific-style.css">
<![endif]-->