vlead / feedback-portal

This is the portal, where all kinds of feedback related to a lab or an experiment is filled in.
Other
0 stars 11 forks source link

Enforce shorthand properties #66

Open madhavipuliraju opened 6 years ago

madhavipuliraju commented 6 years ago

When using a rule like the one bellow you should check if it has a shorthand property and if possible use it, it will shrink your file and speedup your page load time and it will even make your CSS more readable and simple.

Ex:

 .foo {
   margin-top: 10px;
   margin-right: 20px;
   margin-bottom: 10px;
   margin-left: 20px;
 }

Should be:

 .foo {
   margin: 10px 20px;
 }