PascalJvJ / prj-rev-bwfs-dasmoto

0 stars 0 forks source link

CSS Style Guide #2

Open Default4152 opened 6 years ago

Default4152 commented 6 years ago

Simplify - Generally we'll want to follow a CSS Style guide in an effort to improve collaboration and code organization. A CSS Style guide is just some guidelines associated with how our CSS should look. For example:

body
{
    font-family: Helvetica, sans-serif;
}

vs

body {
    font-family: Helvetica, sans-serif;
}

Here is the Google style guide: https://google.github.io/styleguide/htmlcssguide.html Here is the Airbnb style guide: https://github.com/airbnb/css

PascalJvJ commented 6 years ago

Thank you. You are right. The second way is more readable.