SASS Style Programming Guide for CSS

SASS Style Programming Guide for CSS

As more and more developers use SASS, we need to pay attention to the number of SASS codes. We can start from the syntax of CSS (Cascading Style Sheets) to explain some of the special features of SASS syntax. After all, CSS style guides are very common.

This article mainly introduces some features that I am personally interested in. Maybe you can benefit from it and form a set of SASS usage guidelines of your own.
Continue to follow your usual CSS formatting rules and style guides

This article focuses on some content about SASS, but on this basis, developers should maintain their existing and good formatting rules. If you haven’t developed your own set of formatting rules yet, here’s a roundup of some style guides that should help you develop your own CSS writing habits. Here are just some of what is included:

1. Keep line indents consistent
2. Keep the number of spaces before and after colons/curly braces consistent
3. Keep one selector per line and one rule per line
4. Try to write related attributes together
5. There is a plan for class naming rules
6. Avoid using CSS id selectors
7. Wait

Next, let's learn how to write beautiful SASS code. Take writing a property of the .weather class as an example:
List @extend(s) first

CSS CodeCopy content to clipboard
  1. .weather {
  2. @extends %module;
  3. ...
  4. }

Doing so can enable developers to keep a clear mind, immediately understand the relationship between this class and its attributes and other classes and their attributes, and maintain consistency of attributes and clear ideas for attribute reuse.
Normal style

CSS CodeCopy content to clipboard
  1. .weather {
  2. @extends %module;
  3.    background : LightCyan;
  4. ..
  5. }
  6. @include(s)
  7.     
  8. .weather {
  9. @extends %module;
  10.    background : LightCyan;
  11. @include transition( all 0.3s ease-out);
  12. ...
  13. }

Doing so allows developers to see at a glance the deployment of @extend(s) and @include(s), making it easier for themselves and other developers to interpret the code. You may also decide whether to distinguish between custom @includes and @includes from public sources in some cases (especially considering code reusability and timeliness).
Selector nesting

CSS CodeCopy content to clipboard
  1. .weather {
  2. @extends %module;
  3.    background : LightCyan;
  4. @include transition( all 0.3s ease);
  5. > h3 {
  6.      border-bottom : 1px   solid   white ;
  7. @include transform(rotate(90deg));
  8. }
  9. }

Within the nested section, continue to use the style rules described above. Nested sections should always come last.
All vendor prefixes use @mixins

Manufacturer prefixes (CSS prefixes) are very time-sensitive. As modern browsers update, these prefixes will be used less and less. You can adapt to these changes by updating the content of your mixins (or some libraries used in your mixins will be updated automatically). It doesn't matter if the mixin is only one line long.
But when some vendor prefixes are heavily privatized, these prefixes will be very difficult to standardize and applying other prefixes or unprefixed versions will not be worth the effort. I will choose to abandon @mixin these vendor prefixes. For example, -webkit-line-clamp, -mscontent-zoom-chaining or similar.
The nesting level should not exceed 3 levels.

CSS CodeCopy content to clipboard
  1. .weather {
  2. .<span style= "width: auto; height: auto; float: none;" id= "14_nwp" ><a style= "text-decoration: none;" mpid= "14" target= "_blank" href= "http://cpro.baidu.com/cpro/ui/uijs.php?adclass=0&app_id=0&c=news&cf=1001&ch=0&di=128&fv=0&is_app=0&jk=be9ebff1476c47c4&k=cities&k0=cities&kdi0=0&luki=6&n=10&p=baidu&q=06011078_cpr&rb=0&rs=1&seller_id=1&sid=c4476c47f1bf9ebe&ssp2=1&stid=0&t=tpclicked3_hc&tu=u1922429&u=http%3A%2F%2Fwww%2Eadmin10000%2Ecom%2Fdocument%2F2137%2Ehtml&urlid=0" id= "14_nwl" ><span style= "color:#0000ff;font-size:14px;width:auto;height:auto;float:none;" >cities</span></a></span> {
  3. li {
  4. // no more!
  5. }
  6. }
  7. }

If you nest more than three times, you are very likely to have written a bad (bad?) selector. The reasons for this failure are that the selector is too dependent on the HTML architecture (unstable), too detailed (too powerful and inflexible), or too difficult to reusably use (not very usable). At the same time, too many nested levels can easily make the code obscure and difficult to understand.

Sometimes there is so much class-related code that you have to use tag selectors. You may need to be very specific about what you are writing for a class to avoid unnecessary cascading. It’s even possible to use extend to take advantage of some of the reusability features in CSS.

CSS CodeCopy content to clipboard
  1. .weather
  2. > h3 {
  3. @extend %line-under;
  4. }
  5. }

The number of nested code should not exceed 50 lines.

If the nesting in SASS exceeds 50 lines, it may not be fully displayed on one page of the compiler, which will make the code difficult to read and understand. Nesting was originally intended to facilitate and simplify thinking and code organization. If it is against readability, please do not nest.
Global and localized SASS file sequences are equivalent to table contents

In other words, they don't have any one fixed style. Developers should remind themselves to keep the style of all parts consistent and orderly.

The vendor/global libraries are listed first, followed by the custom libraries, then the modes, and finally the libraries used by each division.

This way the 'directory' looks like the following example, which is very clear at a glance:

CSS CodeCopy content to clipboard
  1. /* Vendor Dependencies */   
  2. @import "compass" ;
  3.     
  4. /* Authored Dependencies */   
  5. @import "<span style=" width : auto ; height : auto ; float : none ; " id=" 10_nwp "><a style=" text-decoration : none ; " mpid=" 10 " target=" _blank " href=" http://cpro.baidu.com/cpro/ui/uijs.php?adclass=0&app_id=0&c=news&cf=1001&ch=0&di=128&fv=0&is_app=0&jk=be9ebff1476c47c4&k=global&k0=global&kdi0=0&luki=9&n=10&p=baidu&q=06011078_cpr&rb=0&rs=1&seller_id=1&sid=c4476c47f1bf9ebe&ssp2=1&stid=0&t=tpclicked3_hc&tu=u1922429&u=http%3A%2F%2Fwww%2Eadmin10000%2Ecom%2Fdocument%2F2137%2Ehtml&urlid=0 " id=" 10_nwl "><span style=" color : #0000ff ; font-size : 14px ; width : auto ; height : auto ; float : none ; ">global</span></a></span>/colors" ;
  6. @import "global/mixins" ;
  7.     
  8. /* Patterns */   
  9. @import "global/tabs" ;
  10. @import "global/modals" ;
  11.     
  12. /* Sections */   
  13. @import "global/header" ;
  14. @import "global/footer" ;

These files are like a compass, colors and mixins do not generate compiled CSS code, they are purely independent libraries. Patterns were introduced after this to make rewrites safer without conflicts of exclusivity.
Split SASS into multiple small files

There is nothing wrong with doing this. Whenever possible, use multiple small and precise files. This makes it easier for developers to find specific files instead of searching for a needle in a haystack among several large files with lengthy code.

...

CSS CodeCopy content to clipboard
  1. @import "<span style=" width : auto ; height : auto ; float : none ; " id=" 9_nwp "><a style=" text-decoration : none ; " mpid=" 9 " target=" _blank " href=" http://cpro.baidu.com/cpro/ui/uijs.php?adclass=0&app_id=0&c=news&cf=1001&ch=0&di=128&fv=0&is_app=0&jk=be9ebff1476c47c4&k=global&k0=global&kdi0=0&luki=9&n=10&p=baidu&q=06011078_cpr&rb=0&rs=1&seller_id=1&sid=c4476c47f1bf9ebe&ssp2=1&stid=0&t=tpclicked3_hc&tu=u1922429&u=http%3A%2F%2Fwww%2Eadmin10000%2Ecom%2Fdocument%2F2137%2Ehtml&urlid=0 " id=" 9_nwl "><span style=" color : #0000ff ; font-size : 14px ; width : auto ; height : auto ; float : none ; ">global</span></a></span>/header/header/" ;
  2. @import "global/header/logo/" ;
  3. @import "global/header/dropdowns/" ;
  4. @import "global/header/nav/" ;
  5. @import "global/header/really-specific-thingy/" ;

What I often do is to reference these files one by one in a global scss file, instead of referencing a _header.scss file and then referencing them one by one in the _header.scss file. Doing so can reduce indexing time and improve reading efficiency.

When there are too many of these files and the import sequence is too long, you might want to use Globbing.
Remember to name the Partials as _partial.scss

This is a common naming convention for files that do not compile themselves. Such files will be more or less dependent on other files, making it impossible to compile independently. I personally like to add an underscore before the file name, such as _dropdown-menu.scss
Add line mapping when compiling locally

See here, this means that the development tools can tell you the source of each rule, even if it is an imported partial file.
When deploying, remember to compile the minified files

A working web page should only ever use minimal CSS.
No need to submit .css files

This may take some time, but not having .css files in your repository can be a wonderful thing. Compilation is done at deployment time. So the only thing you can see are those beautifully formatted sass files that have been minified. This makes the description of the file very useful. File descriptions are used to compare changes made by the version publisher. For the already streamlined .css files, the file description is basically not needed.
Generous usage notes

Few people regret leaving comments in their code. Whether useful or insignificant, comments will eventually be erased when compiled into minified CSS files, without any additional cost to the developer.

.overlay {
/* modals are 6000, saving messages are 5500, header is 2000 */
z-index: 5000;
}

Speaking of comments, you may also want to make some standardization adjustments to them. In SASS, '//' is very suitable for adding comments. '//' makes commenting and uncommenting very convenient.
Convert some commonly used values ​​and values ​​with special meanings into variables

If you find yourself reusing a value (which is very common in front-end design), you're better off turning it into a variable. This way you can remind yourself what the value means by naming it, and stay consistent when writing code, so you don't have to adjust it line by line when changing the value.

If a number has an obvious meaning, then converting it into a variable is essential.

CSS CodeCopy content to clipboard
  1. $zHeader: 2000;
  2. $zOverlay: 5000;
  3. $zMessage: 5050;
  4.     
  5. .header {
  6.    z-index : $zHeader;
  7. }
  8. .overlay {
  9.    z-index : $zOverlay;
  10. }
  11. .message {
  12.    z-index : $zMessage;
  13. }

These figures may be stored in a single file and imported as @imported. This way you can manage all z-index or other variables in a unified way
Converting colors into variables

Except black and white. Many colors are used more than just once, even if you think you won't use them again. But if you convert it into a variable, you might find that you need it in other places. For color variables, there are color functions in Sass that can handle them, such as lighten() and darkern(). This makes it easy to control the overall color (change once, and forget it)
Nest and name your media libraries

The ability to nest media libraries in Sass means 1. you don’t have to override selectors somewhere else and cause unnecessary errors; 2. it’s clear what rules you’re overriding, which can get very confusing when it’s at the end of your CSS or in another file.

CSS CodeCopy content to clipboard
  1. .sidebar {
  2.    float : right right ;
  3.    width : 33.33%;
  4. @include bp(mama-bear) {
  5.      width : 25%;
  6. }
  7. }

A more detailed explanation is here: http://css-tricks.com/naming-media-queries/
Put Shame Last

In your global stylesheet, import a _shame.scss file at the end.

CSS CodeCopy content to clipboard
  1. @import "compass"   
  2.     
  3. ...
  4.     
  5. @import "shame"   

If you need to make some quick changes, you can do so here. If you have the time and energy later, you can
The changes made to the overall architecture in _shame.scss are better organized and structured. For more details, please see: http://csswizardry.com/2013/04/shame-css/
You are the one who decides everything

Sass won't do anything you don't tell it to, so the final output of your Sass file is up to you. Writing CSS files with Sass is just like writing CSS files without Sass. You are the master of the code.

<<:  The complete process of Docker image creation

>>:  CSS selects the first child element under the parent element (:first-child)

Recommend

Detailed explanation of JavaScript upload file limit parameter case

Project scenario: 1. Upload file restrictions Fun...

17 excellent web designs carefully crafted by startups

Startups often bring us surprises with their unco...

Web page layout should consider IE6 compatibility issues

The figure below shows the browser viewing rate i...

Solve the MySQL 5.7.9 version sql_mode=only_full_group_by problem

MySQL 5.7.9 version sql_mode=only_full_group_by i...

Implementation of HTML to PDF screenshot saving function

Using Technology itext.jar: Convert byte file inp...

Difference between MySQL btree index and hash index

In MySQL, most indexes (such as PRIMARY KEY, UNIQ...

vitrualBox+ubuntu16.04 install python3.6 latest tutorial and detailed steps

Because I need to use Ubuntu+Python 3.6 version t...

Notes on using $refs in Vue instances

During the development process, we often use the ...

MySQL 5.7.17 installation and configuration tutorial under CentOS6.9

CentOS6.9 installs Mysql5.7 for your reference, t...

The most basic code for web pages

◆Add to favorites illustrate Click to add your we...

jQuery plugin to implement minesweeper game (1)

This article shares the specific code of the firs...

Summary of HTML horizontal and vertical centering issues

I have encountered many centering problems recent...

Two ways to start Linux boot service

Table of contents rc.local method chkconfig metho...

How to fix the WeChat applet input jitter problem

Find the problem Let's look at the problem fi...