Standards for developing contributing HTML, CSS, and JavaScript to W3C WAI-ARIA APG.
These standards are provided as a guide to contributing to W3C WAI-ARIA APG
They are based on Code Guide by @mdo.
The following priorities have been used to determine these standards:
</li> or </body>).<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Page title</title>
</head>
<body>
<img src="images/company-logo.png" alt="Company">
<h1 class="hello-world">Hello, world!</h1>
</body>
</html>
Enforce standards mode and more consistent rendering in every browser possible with this simple doctype at the beginning of every HTML page.
<!DOCTYPE html>
From the HTML standard:
Authors are encouraged to specify a
langattribute on the roothtmlelement, giving the document's language. This aids speech synthesis tools to determine what pronunciations to use, translation tools to determine what rules to use, and so forth.
Read more about the lang attribute in the spec.
Head to Sitepoint for a list of language codes.
<html lang="en-us"> <!-- ... --> </html>
Use UTF-8, and use the short form <meta charset="UTF-8"> as the first child in head.
<head> <meta charset="UTF-8"> ... </head>
Per the HTML standard, there is no need to specify a type when including CSS and classic JavaScript files as text/css and text/javascript are their respective defaults.
<!-- External CSS --> <link rel="stylesheet" href="code-guide.css"> <!-- In-document CSS --> <style> /* ... */ </style> <!-- JavaScript --> <script src="code-guide.js"></script>
Strive to maintain HTML standards and semantics, but not at the expense of practicality. Use the least amount of markup with the fewest intricacies whenever possible.
A boolean attribute is one that needs no declared value. XHTML required you to declare a value, but HTML has no such requirement.
For further reading, consult the WHATWG section on boolean attributes:
The presence of a boolean attribute on an element represents the true value, and the absence of the attribute represents the false value.
If you must include the attribute‘s value, and **you don’t need to**, follow this WHATWG guideline:
If the attribute is present, its value must either be the empty string or [...] the attribute's canonical name, with no leading or trailing whitespace.
In short, don't add a value.
<input type="text" disabled> <input type="checkbox" value="1" checked> <select> <option value="1" selected>1</option> </select>
Whenever possible, avoid superfluous parent elements when writing HTML. Many times this requires iteration and refactoring, but produces less HTML. Take the following example:
<!-- Not so great --> <span class="avatar"> <img src="..."> </span> <!-- Better --> <img class="avatar" src="...">
Writing markup in a JavaScript file makes the content harder to find, harder to edit, and less performant. Avoid it whenever possible.
: for each declaration.box-shadow).rgb(), rgba(), hsl(), hsla(), or rect() values. This helps differentiate multiple color values (comma, no space) from multiple property values (comma with space).0.5 instead of .5 and -0.5px instead of -.5px).#fff. Lowercase letters are much easier to discern when scanning a document as they tend to have more unique shapes.#fff instead of #ffffff.input[type="text"]. They’re only optional in some cases, and it’s a good practice for consistency.margin: 0; instead of margin: 0px;. (Note that values that are not lengths still require a unit, e.g. 0deg.)Questions on the terms used here? See the syntax section of the Cascading Style Sheets article on Wikipedia.
/* Bad CSS */
.selector, .selector-secondary, .selector[type=text] {
padding:15px;
margin:0px 0px 15px;
background-color:rgba(0, 0, 0, .5);
box-shadow:0px 1px 2px #CCC,inset 0 1px 0 #FFFFFF
}
/* Good CSS */
.selector,
.selector-secondary,
.selector[type="text"] {
padding: 15px;
margin-bottom: 15px;
background-color: rgba(0,0,0,0.5);
box-shadow: 0 1px 2px #ccc, inset 0 1px 0 #fff;
}
Related property declarations should be grouped together following the order:
Positioning comes first because it can remove an element from the normal flow of the document and override box model related styles. The box model comes next as it dictates a component's dimensions and placement.
Everything else takes place inside the component or without impacting the previous two sections, and thus they come last.
For a complete list of properties and their order, please see Recess.
.declaration-order {
/* Positioning */
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 100;
/* Box-model */
display: block;
float: right;
width: 100px;
height: 100px;
/* Typography */
font: normal 13px "Helvetica Neue", sans-serif;
line-height: 1.5;
color: #333;
text-align: center;
/* Visual */
background-color: #f5f5f5;
border: 1px solid #e5e5e5;
border-radius: 3px;
/* Misc */
opacity: 1;
}
@importCompared to <link>s, @import is slower, adds extra page requests, and can cause other unforeseen problems. Avoid them and instead opt for an alternate approach:
<link> elementsFor more information, read this article by Steve Souders.
<!-- Use link elements -->
<link rel="stylesheet" href="core.css">
<!-- Avoid @imports -->
<style>
@import url("more.css");
</style>
Place media queries as close to their relevant rule sets whenever possible. Don‘t bundle them all in a separate stylesheet or at the end of the document. Doing so only makes it easier for folks to miss them in the future. Here’s a typical setup.
.element { ... }
.element-avatar { ... }
.element-selected { ... }
@media (min-width: 480px) {
.element { ...}
.element-avatar { ... }
.element-selected { ... }
}
When using vendor prefixed properties, indent each property such that the declaration's value lines up vertically for easy multi-line editing.
In Textmate, use Text → Edit Each Line in Selection (⌃⌘A). In Sublime Text 2, use Selection → Add Previous Line (⌃⇧↑) and Selection → Add Next Line (⌃⇧↓).
/* Prefixed properties */
.selector {
-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.15);
box-shadow: 0 1px 2px rgba(0,0,0,.15);
}
Strive to limit use of shorthand declarations to instances where you must explicitly set all the available values. Common overused shorthand properties include:
paddingmarginfontbackgroundborderborder-radiusOften times we don't need to set all the values a shorthand property represents. For example, HTML headings only set top and bottom margin, so when necessary, only override those two values. Excessive use of shorthand properties often leads to sloppier code with unnecessary overrides and unintended side effects.
The Mozilla Developer Network has a great article on shorthand properties for those unfamiliar with notation and behavior.
/* Bad example */
.element {
margin: 0 0 10px;
background: red;
background: url("image.jpg");
border-radius: 3px 3px 0 0;
}
/* Good example */
.element {
margin-bottom: 10px;
background-color: red;
background-image: url("image.jpg");
border-top-left-radius: 3px;
border-top-right-radius: 3px;
}
Code is written and maintained by people. Ensure your code is descriptive, well commented, and approachable by others. Great code comments convey context or purpose. Do not simply reiterate a component or class name.
Be sure to write in complete sentences for larger comments and succinct phrases for general notes.
/* Bad example */
/* Modal header */
.modal-header {
...
}
/* Good example */
/* Wrapping element for .modal-title and .modal-close */
.modal-header {
...
}
.btn and .btn-danger)..btn is useful for button, but .s doesn't mean anything..js-* classes to denote behavior (as opposed to style), but keep these classes out of your CSS.It's also useful to apply many of these same rules when creating Sass and Less variable names.
/* Bad example */
.t { ... }
.red { ... }
.header { ... }
/* Good example */
.tweet { ... }
.important { ... }
.tweet-header { ... }
All JavaScript must be compatible with the latest release of Chrome, Firefox, and Safari.
Please refer to the AirBnB Javascript Style Guide for all basic javascript syntax and code style rules.
Functions that return booleans should be prefixed with is, has, are or similar keywords distinguish the return value, (e.g: isVisible, areEqual, hasEncryption).
function isVisible(element) { return element.classList.contains('open'); } function areEqual(a, b) { // function logic return a === b; } function hasEncryption() { // function logic return encryption === true; }
Functions that return HTML snippets should be prefixed with render, for example:
function renderButton(label) { return `<button type="button">${label}</button>`; }
Functions that are intended to be event handlers should be prefixed with on, e.g. onKeyDown. If the event handler is specifically for one element within a complex widget, include the element name as well: onButtonClick.
mainEl.addEventListener('click', onClick); buttonEl.addEventListener('click', onButtonClick); listboxEl.addEventListener('keydown', onListboxKeyDown);
Functions that mutate state should be prefixed with update, or a verb that describes the state change. The full function name should be in the format of “verb + name of state” For example, openListbox or updateFilterString.
function openListbox() { this.listbox.open = true; } function updateFilterString(value) { this.filterString = value; } function updateActiveOption(index) { this.activeOption = index; }
Be specific when naming functions so that whenever possible, the function name is descriptive on its own without needing additional comments to clarify. Prefixing function names with verbs is a good practice.
- function buttonLabel(label) { - ... - } + function applyButtonLabel(label) { + ... + }
Ideally functions should be single-purpose, short, and avoid side effects. The goal is to write functions that are easy to read, test, and refactor.
Pure functions and side effects: whenever possible, computation and logic should be handled in pure functions, or functions that do not depend on or mutate external state. Functions that do modify external state should follow an update* naming convention as described in the “Function Naming” section. For example, combobox logic to filter options as a user types could be split out as follows:
- function onInput(event) { - // logic here to get an array of filtered options based on event.target.value and this.options - const filteredOptions = result; - - // logic here to update internal state and the DOM, e.g.: - this.options = filteredOptions; - this.listboxEl.innerHTML = ''; - filteredOptions.forEach((option) => { - // etc - this.listboxEl.appendChild(newOptionEl); - }); - } + function onInput(event) { + const filteredOptions = this.filterOptions(event.target.value, this.options); + this.updateOptions(filteredOptions); + } + + function filterOptions(filterString, optionArray) { + // logic here to do actual filtering + // this is the "pure" function + return result; + } + + function updateOptions(optionArray) { + this.options = filteredOptions; + // optionally split this logic into a renderListbox() function + // this makes sense to split out if there are any other actions that would result in updating the listbox HTML without also updating this.options + this.listboxEl.innerHTML = ''; + filteredOptions.forEach((option) => { + // etc + this.listboxEl.appendChild(newOptionEl); + }); + }
Single-purpose functions: avoid double-barrelled functions, for example setFocusAndDoStuff(). Calling setFocus() and doStuff() makes the logic for each step easier to read and understand. Ideally this also makes them easier to name and potentially refactor.
- function onOptionClick(event) { - this.closeListboxAndUpdateValue(event.target.innerText); - } - - function closeListboxAndUpdateValue(newValue) { - // logic here to update listbox state - // ... - - // logic here to update the listbox value - buttonEl.innerText = newValue; - } + function onOptionClick(event) { + this.closeListbox(); + this.updateValue(event.target.innerText); + } + + function closeListbox(event) { + // logic here to update listbox state + // ... + } + + function updateValue(event) { + // logic here to update the listbox value + buttonEl.innerText = newValue; + }
Avoid nested conditionals and ternaries
- function getResult() { - let result; - if (A) { - result = resultA(); - } else { - if (B) { - result = resultB(); - } else { - if (C) { - result = resultC(); - } else { - result = resultD(); - } - } - } - return result; - } - + function getResult() { + if (A) return resultA(); + if (B) return resultB(); + if (C) return resultC(); + return resultD(); + }
When writing the javascript for a new widget, there are certain guidelines for code organization and structure to maintain consistency with other APG widgets.
Widgets should be defined as classes, with one class per widget.
Internal variables and functions should be in the following order within the widget class, and sorted alphabetically:
Widgets should not be written to expose any of their internal state variables or functions. Communication should be done through emmitting events and handling property updates.
Here is a basic skeleton for creating a new widget class:
/* * This content is licensed according to the W3C Software License at * https://www.w3.org/Consortium/Legal/2015/copyright-software-and-document */ 'use strict'; class Cat { constructor(el, name) { // properties this.el = el; this.name = name; // states this.isPurring = false; this.isSleeping = false; } onPet(event) { // etc } renderCat() { // create DOM // attach event handlers // etc. } updatePurring(purring) { this.isPurring = true; } // etc. }
We are constraint slightly in the code design of our examples because we would like all examples to be opened in a CodePen. You can read more about how we add the “Open in CodePen” button on the CodePen wikipage.
<3
Heavily inspired by Idiomatic CSS and the GitHub Styleguide. Made with all the love in the world by @mdo.
Open sourced under MIT. Copyright 2016 @mdo.