ecometer

Use conditional comments

(Development)
#17

If some resources should only be sent to specific browsers, use conditional comments to avoid them being loaded unnecessarily by the other browsers.

When only Internet Explorer 7 is concerned, you could add the following conditional comment:

<!--[if lte IE 7]>
<link type="text/css" rel="stylesheet" media="all"
href="/fix-ie.css" />
<![endif]-->
This best practice should only be applied if it is coherent with your project's specifications.
Under CC-By-NX-SA license