Break Free From CSS Prefix Hell
coding.smashingmagazine.com
Break Free From CSS Prefix Hell
1–10 of 13 posts
Re: Break Free From CSS Prefix Hell
#2What I don't like: it depends on JS.
Using LESS or SASS avoids most of the problem this article talks about it, although the generated CSS will contain every vendor prefix. I'm not sure the difference in CSS filesize is worth using this solution.
Does anyone know of a server-side solution like this? Wouldn't be hard to vary the CSS output based on user-agent. Although you'd lose some caching benefits.
Re: Break Free From CSS Prefix Hell
#3What I like: it detects your browser and only sets the needed prefixes. What I don't like: it depends on JS. Using LESS or SASS avoids most of the problem this article talks about it, although the generated CSS will contain every vendor prefix. I'm not sure the difference in CSS filesize is worth using this solution. Does anyone know of a server-side solution like this? Wouldn't be hard to vary the CSS output based o…
Re: Break Free From CSS Prefix Hell
#4What I like: it detects your browser and only sets the needed prefixes. What I don't like: it depends on JS. Using LESS or SASS avoids most of the problem this article talks about it, although the generated CSS will contain every vendor prefix. I'm not sure the difference in CSS filesize is worth using this solution. Does anyone know of a server-side solution like this? Wouldn't be hard to vary the CSS output based o…
Re: Break Free From CSS Prefix Hell
#5What I like: it detects your browser and only sets the needed prefixes. What I don't like: it depends on JS. Using LESS or SASS avoids most of the problem this article talks about it, although the generated CSS will contain every vendor prefix. I'm not sure the difference in CSS filesize is worth using this solution. Does anyone know of a server-side solution like this? Wouldn't be hard to vary the CSS output based o…
I use Compass( http://compass-style.org ) but that pretty much runs on SASS.
Using compass you just have to type:
+linear-gradient(color-stops(#c7def4,#d7eef4))
+box-shadow(rgba($ycolor9,.6) 0 0 4px inset)
+border-radius()
And it works really fine.Re: Break Free From CSS Prefix Hell
#6Re: Break Free From CSS Prefix Hell
#7When did we stop caring about FOUC and client-side performance?
Re: Break Free From CSS Prefix Hell
#8When did we stop caring about FOUC and client-side performance?
Stylesheets are cached and a one-time hit for new visitors - this method has to reiterate on every single page load.
Re: Break Free From CSS Prefix Hell
#9When did we stop caring about FOUC and client-side performance?
Re: Break Free From CSS Prefix Hell
#10Use LESS and precompile your CSS... it will change your life.