html - Can one http request call multiple css files? -
is possible add multiple css in header tag 1 http request execute css file @ once ?
i know about
@import url('/css/typography.css'); @import url('/css/layout.css'); @import url('/css/color.css'); can or other solution reduce http requests
<link rel='stylesheet' href='/css/typography.css,layout.css,color.css'>
bundle css files production , minify ofc.
http://www.sitepoint.com/faster-page-loads-bundle-your-css-and-javascript/
Comments
Post a Comment