Home › Forums › CSS › DOCTYPE, Browser Compatibility, or CSS issue? › Reply To: DOCTYPE, Browser Compatibility, or CSS issue?
December 17, 2013 at 2:43 pm
#158546
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]-->