Minify and inline CSS for ASP.NET MVC
ASP.NET has a CssMinify class (and a JavaScript variant as well) designed for use in the bundling pipeline. But what if you want to have your CSS minified and inline? Here is an action that is working for me (rendered into a style tag on my _Layout.cshtml using @Html.Action("InlineCss", "Home")).
Note that I'm using this to inline CSS for this blog. The pages are cached so I'm not worried about how well this action performs. My blog is also basically all landing pages so I'm also not worried about caching a non-inline version for later use, I just drop all the CSS on every page.
Related Posts
- Blogger Classic Templates Bugs and XHTML
- How to get SEO credit for Facebook Comments (the missing manual)
- Geotagging posts in BlogEngine.NET
- BadImageFormatException for a 64-bit ASP MVC web application
- Migrating from Blogger to BlogEngine.NET
(Published to the Fediverse as: Minify and inline CSS for ASP.NET MVC #code #asp.net #mvc #css #inline #minify How to use ASP.NET MVC bundles to inline CSS and JavaScript for high performing landing pages. )
Comments
Thanks for the post!
Add Comment
All comments are moderated. Your email address is used to display a Gravatar and optionally for notification of new comments and to sign up for the newsletter.