Using Conditional Directives in CSS for Performance Boost
Posted on November 6, 2022

Using Conditional Directives in CSS for Performance Boost

The CSS in a website is a very critical component of any web page. It takes care of rendering and styling of each page element and with responsive design becoming a default standard, the CSS also has to handle the rules for each screen size, orientation and media type.

All these variations result in either a very large number of small CSS files or one large CSS file depending on how your pages are set up. Developers have mostly been dividing CSS files based on the components to be rendered with each request which is a wise thing to do. However, we want to go a step further and think - "When a user is accessing my page from a mobile device, why am I loading the CSS rules for Desktop also?". This question becomes even more critical when we realize the CSS is a blocking resource i.e. the browser won't complete the rendering process until the very last line of your CSS has been loaded.

So when I am accessing a page on my phone browser, the browser is blocked from rendering completion until the desktop, tablet and even print related CSS code has loaded.

This is where we can use a "media" attribute while linking our CSS. A CSS linking with a media attribute would look like this:

<link rel="stylesheet" type="text/css" href="print.css" media="print">

The value "print" for media attribute tells the browser that this CSS files is applicable only to the print media. Of course as a developer, I will need to make sure that I put the right code in the right file!

Similarly, I can tell the browser that a certain file contains only mobile rendering related css code like this:

<link rel="stylesheet" type="text/css" href="mobile.css" media="(max-width:767px)">

 

A code targeted at tablets will look like this:

<link rel="stylesheet" type="text/css" href="tablets.css" media="(min-width:768px) and (max-width:1023px)">

Along the same lines, I can define the rules for Desktop screen sizes like this:

<link rel="stylesheet" type="text/css" href="tablets.css" media="(min-width:1024px)">

The capability of the media attribute doesn't stop at media type and screen size only. We can also separate out the files for dark and light mode like this:

<link rel="stylesheet" type="text/css" href="light-mode.css" media="(prefers-color-scheme: light)">

<link rel="stylesheet" type="text/css" href="dark-mode.css" media="(prefers-color-scheme: dark)">

 

Sometimes, the CSS uses different images based on pixel density. So, your code will have images like "cart.png" and "cart@2x.png".  While the browsers are capable of blocking the irrelevant images based on pixel density of the screen, we can avoid the code to be blocking by using following code:

<link rel="stylesheet" type="text/css" href="dark-mode.css" media="(min-resolution: 2dppx)">

Validation and Support

This first and important thing to note is that the media attribute won't block a CSS file from loading. Instead, the browser would assign a priority to each resource. The priority values are assigned like "Highest", "Lowest".

To view this, head over to the "Network" tab in Chrome dev tools. The priority is not visible by default, so you can right column on columns area to enable the view:

chrom-dev-tools-2

 

chrom-dev-tools-1

So what does this priority column mean? It indicates that the browser will not block the rendering to wait for loading of Lowest priority files.

Loading priorities

 

Browser Support

This is where a bad news comes in! Safari current doesn't support the honouring these priorities but we can hope that it comes through soon. Given that Chrome and Firefox and dominant browsers put together and the fact that adding this code doesn't break anything in browser, its worth a consideration.

 

Adding conditional directives in your HubSport CMS website

If your website is built on HubSpot and you plan to make use of this feature, it's very easy to do. The instructions below are relevant if you are using a standard theme structure or a theme built by HubSpot's migration team (i.e. us!):

  1. Go to the file base.html in templates/layout
  2. Split your mobile rendering code in a file in css/mobile.css
  3. Add an import for mobile.css in base.html just below main.css import with media attribute (max-width:768px)

 

If you need more help with this, you can always reach out to us!

 

 

 

Leave a reply

Our Recent Blogs

Vikram Singh
Vikram Singh
Posted on March 5, 2024

How to optimize HubSpot CMS Pages for Performance

Deepti Mittal
Deepti Mittal
Posted on February 14, 2024

Handling URL Redirects in a HubSpot CMS Migration

Vikram Singh
Vikram Singh
Posted on February 7, 2024

Introducing IGNITE: A New Free Theme for HubSpot CMS

Deepti Mittal
Deepti Mittal
Posted on September 6, 2023

Implementing Pagination in HubSpot CMS

Deepti Mittal
Deepti Mittal
Posted on August 21, 2023

HubSpot CRM for capturing leads at a physical event

Deepti Mittal
Deepti Mittal
Posted on July 13, 2023

10 best Landing Page Designs in HubSpot CMS in 2023

Vikram Singh
Vikram Singh
Posted on July 6, 2023

5 Best HubSpot CRM Integrations in 2023

Deepti Mittal
Deepti Mittal
Posted on February 10, 2023

Why CRM suite is important in your business