Capitalization
Use only lowercase.
All code has to be lowercase. This applies to CSS selectors, properties and property values (with the exception of strings).
Not Recommended:
color: #E5E5E5;
Recommended:
color: #e5e5e5;
This style guide acts as the official guide to follow in your projects. I will use this guide to grade your projects. There are many opinions on the "ideal" style in the world of Front-End Web Development. Therefore, in order to reduce the confusion on what style students should follow during the course of their projects, please refer to this style guide for your projects.
Use only lowercase.
All code has to be lowercase. This applies to CSS selectors, properties and property values (with the exception of strings).
color: #E5E5E5;
color: #e5e5e5;
Remove trailing white spaces.
Trailing white spaces are unnecessary and can complicate diffs.
border: 0;__
border: 0;
If using Sublime Text, this can be done automatically each time you save a file by adding the following to your User Settings JSON file (you should be able to find this within Sublime Text's menu):
"trim_trailing_white_space_on_save": true
Indentation should be consistent throughout the entire file. Whether you choose to use tabs or spaces, or 2-spaces vs. 4-spaces - just be consistent!
Explain code as needed, where possible.
Use comments to explain code: What does it cover, what purpose does it serve, and why is the respective solution used or preferred?
Use valid CSS.
Using valid CSS is a measurable baseline quality that ensures proper CSS usage and allows you to spot CSS code that may not have any effect and can be removed.
Use meaningful or generic ID and class names.
Instead of presentational of cryptic names, always use ID and class names that reflect the purpose of the element in question or that are otherwise generic.
Names that are specific and reflect the purpose of the element should be preferred as these are most understandable and the least likely to change.
Generic names are simply a fallback for elements that have no particular meaning different from their siblings. They are typically needed as helpers.
.p-998 { … }
.btn-green { … }
.gallery { … }
.btn-default { … }
Avoid qualifying ID and class names with type selectors.
Unless necessary (for example, with helper classes), do not use element names in conjunction with IDs or classes. Avoiding unnecessary ancestor selectors is useful for performance reasons.
It is also considered bad practice to use IDs in your CSS files. There are no situations where IDs provide a benefit over classes. If you need to use a unique name for an element, use a class. (The only benefit IDs provide is speed, and is only beneficial on pages with thousands of similar elements.)
ul#example { … }
div.error { … }
.example { … }
.error { … }
Shorthand should be used.
CSS offers a variety of shorthand properties (like padding
rather than explicitly setting padding-top
, padding-bottom
, etc.) that should be used whenever possible, with the exception of font properties and properties intended to override properties of the same name in a framework such as Bootstrap.
Using shorthand properties is useful for code efficiency and understandability. The font
shorthand property is recommended when setting all font related properties but is not required when making minor modifications. When using the font shorthand property, keep in mind that if font size and family are not included browsers will ignore entire font statement.
border-top-style: none;
font-family: palatino, georgia, serif;
font-size: 100%;
line-height: 1.6;
padding-bottom: 2em;
padding-left: 1em;
padding-right: 1em;
padding-top: 0;
border-top: 0;
font: 100%/1.6 palatino, georgia, serif;
padding: 0 1em 2em;
Omit unit specification after 0
values.
margin: 0em;
padding: 0px;
margin: 0;
padding: 0;
Include leading 0
s in decimal values for readability.
font-size: .8em;
font-size: 0.8em;
Use 3-character hexadecimal notation where possible.
color: #eebbcc;
color: #ebc;
Separate words in ID and class names by a hyphen (-
).
Use hyphens to concatenate words and abbreviations in selectors in order to improve understanding and scannability.
One exception: underscores (_
) are also acceptable separators when writing BEM style CSS selectors.
.demoimage { … }
.errorStatus { … }
.demo-image { … }
.error-status { … }
Avoid user agent detection as well as CSS "hacks"—try a different approach first.
It's tempting to address styling difference over user agent detection or special CSS filters, workaround and hacks. Both approaches should be considered an absolute last resort in order to achieve and maintain an efficient and manageable code base. Consider if the intended style is absolutely critical to the functionality of your application or can the "offending" user agent "live without it".
Indent all block content, that is rules within rules as well as declarations to reflect hierarchy and improve understanding.
@media screen, projection {
html {
background: #fff;
color: #444;
}
}
Use a semicolon after every declaration for consistency and extensibility reasons.
.test {
display: block;
height: 100px
}
.test {
display: block;
height: 100px;
}
Always use a space after a property name's colon, but no space between property and colon, for consistency reasons.
font-weight:bold;
padding : 0;
margin :0;
font-weight: bold;
padding: 0;
margin: 0;
Always use a single space between the last selector and the opening brace that begins the declaration block.
.video-block{
margin: 0;
}
.audio-block
{
margin: 0;
}
.video-block {
margin: 0;
}
.audio-block {
margin: 0;
}
Always start a new line for each selector and declaration.
h1, h2, h3 {
font-weight: normal; line-height: 1.2;
}
h1,
h2,
h3 {
font-weight: normal;
line-height: 1.2;
}
Always put a blank line (two line breaks) between rules.
html {
background: #fff;
}
body {
margin: auto;
width: 50%;
}
Use double quotation marks for attribute selectors or property values. Do not use quotation marks in URI values (url()
).
@import url("css/links.css");
html {
font-family: 'Open Sans', arial, sans-serif;
}
@import url(css/links.css);
html {
font-family: "Open Sans", arial, sans-serif;
}
If possible, group style sheet sections together by using comments. Separate sections with new lines.
/* Header */
.header {
…
}
.header-nav {
…
}
/* Content */
.gallery {
…
}
.gallery-img {
…
}
/* Footer */
.footer {
…
}
.footer-nav {
…
}