Reputation: 6217
I ran my site through YSlow and received an F on "Avoid CSS Expressions" for CSS hrefs like this:
<link href="/css/font-awesome-ie7.min.css?1420669254" media="screen" rel="stylesheet" type="text/css" />
Does YSlow not like CSS parameters? Anything I can try to get this YSlow compliant?
Upvotes: 0
Views: 416
Reputation: 10721
From the Yahoo best practices explanation of CSS Expressions:
CSS expressions are a powerful (and dangerous) way to set CSS properties dynamically. They were supported in Internet Explorer starting with version 5, but were deprecated starting with IE8.
Some options for dealing with this:
Upvotes: 1