Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
Frontend Guidelines
Search
Sponsored
·
Ship Features Fearlessly
Turn features on and off without deploys. Used by thousands of Ruby developers.
→
Ricardo Andrés Bello
September 02, 2015
Programming
1
110
Frontend Guidelines
HTML and CSS good practices and what NOT to do (:
Ricardo Andrés Bello
September 02, 2015
Tweet
Share
More Decks by Ricardo Andrés Bello
See All by Ricardo Andrés Bello
Rails Frontend Optimisations (part 2)
ricardoaandres
0
73
How Browsers Render
ricardoaandres
0
93
Bower + Rails
ricardoaandres
0
130
Rails Frontend Optimisations (part 1)
ricardoaandres
0
68
Other Decks in Programming
See All in Programming
CSC307 Lecture 02
javiergs
PRO
1
780
15年続くIoTサービスのSREエンジニアが挑む分散トレーシング導入
melonps
2
200
高速開発のためのコード整理術
sutetotanuki
1
400
AI時代のキャリアプラン「技術の引力」からの脱出と「問い」へのいざない / tech-gravity
minodriven
21
7.2k
Data-Centric Kaggle
isax1015
2
770
今こそ知るべき耐量子計算機暗号(PQC)入門 / PQC: What You Need to Know Now
mackey0225
3
370
責任感のあるCloudWatchアラームを設計しよう
akihisaikeda
3
170
Fluid Templating in TYPO3 14
s2b
0
130
[KNOTS 2026登壇資料]AIで拡張‧交差する プロダクト開発のプロセス および携わるメンバーの役割
hisatake
0
280
AI によるインシデント初動調査の自動化を行う AI インシデントコマンダーを作った話
azukiazusa1
1
730
AI Agent Tool のためのバックエンドアーキテクチャを考える #encraft
izumin5210
6
1.8k
例外処理とどう使い分ける?Result型を使ったエラー設計 #burikaigi
kajitack
16
6.1k
Featured
See All Featured
The Straight Up "How To Draw Better" Workshop
denniskardys
239
140k
Why You Should Never Use an ORM
jnunemaker
PRO
61
9.7k
Introduction to Domain-Driven Design and Collaborative software design
baasie
1
580
Art, The Web, and Tiny UX
lynnandtonic
304
21k
SEO in 2025: How to Prepare for the Future of Search
ipullrank
3
3.3k
Visual Storytelling: How to be a Superhuman Communicator
reverentgeek
2
430
For a Future-Friendly Web
brad_frost
182
10k
Paper Plane
katiecoart
PRO
0
46k
A Modern Web Designer's Workflow
chriscoyier
698
190k
Discover your Explorer Soul
emna__ayadi
2
1.1k
svc-hook: hooking system calls on ARM64 by binary rewriting
retrage
1
99
16th Malabo Montpellier Forum Presentation
akademiya2063
PRO
0
49
Transcript
FRONTEND GUIDELINES
HTML
SEMANTICS <h1> <figure> <img alt=‘Company’ src=‘logo.png’> </figure> </h1> <h1> <img
alt=‘Company’ src=‘logo.png’> </h1> <!-- bad --> <!-- good -->
<div id=‘main’> <div class=‘article’> <div class=‘header’> <h1>Blog post</h1> <p>Published: <span>21st
Feb, 2015</span></p> </div> <p>…</p> </div> </div> <main> <article> <header> <h1>Blog post</h1> <p>Published: <time datetime=‘2015-02-21’>21st Feb, 2015</time></p> </header> <p>…</p> </article> </main> <!-- bad --> <!-- good --> SEMANTICS
<meta http-equiv=Content-Type content=‘text/html; charset=utf-8’ /> <link rel=‘stylesheet’ href=‘style.css’ type=‘text/css’ />
<input type=‘email’ placeholder='
[email protected]
’ required=‘required’ /> <script src=‘main.js’ type=‘text/javascript’></script> <meta charset=‘utf-8’> <link rel=‘stylesheet’ href=‘style.css’> <input type=‘email’ placeholder='
[email protected]
’ required> <script src=‘main.js’></script> <!-- good --> <!-- bad --> BREVITY
<h1><img alt=‘Logo’ src=‘logo.png’></h1> <div class=‘button’></div> <h1><img alt=‘Acid Labs’ src=‘logo.png’></h1> <button></button>
<!-- good --> <!-- bad --> ACCESSIBILITY
<!doctype html> <html> <head> <title></title> </head> </html> <!doctype html> <html
lang=‘en’> <head> <meta charset=‘utf-8’> <title></title> </head> </html> <!-- good --> <!-- bad --> LANGUAGE
<!doctype html> <html> <head> <title></title> <script src=analytics.js></script> </head> </html> <!doctype
html> <html lang=‘en’> <head> <meta charset=‘utf-8’> <title></title> </head> <body> <script src=analytics.js></script> </body> </html> <!-- good --> <!-- bad --> PERFORMANCE
CSS
SEMI COLONS div { color: red } div { color:
red; } /* bad */ /* good */
NATURAL FLOW img { display: block; } img { vertical-align:
middle; } /* bad */ /* good */
NATURAL FLOW div { width: 100px; position: absolute; right: 0;
} div { width: 100px; margin-left: auto; } /* bad */ /* good */
SELECTORS div:first-of-type :last-child > p ~ * div:first-of-type .info /*
bad */ /* good */
SELECTORS img[src$=svg], ul > li:first-child { opacity: 0; } [src$=svg],
ul > :first-child { opacity: 0; } /* bad */ /* good */
SPECIFICITY .bar { color: green !important; } .foo { color:
red; } .foo.bar { color: green; } .foo { color: red; } /* bad */ /* good */
OVERRIDING li { visibility: hidden; } li:first-child { visibility: visible;
} li + li { visibility: hidden; } /* bad */ /* good */
INHERITANCE div h1, div p { text-shadow: 0 1px 0
#fff; } div { text-shadow: 0 1px 0 #fff; } /* bad */ /* good */
LANGUAGE :nth-child(2n + 1) { transform: rotate(360deg); } :nth-child(odd) {
transform: rotate(1turn); } /* bad */ /* good */
BREVITY div { transition: all 1s; top: 50%; margin-top: -10px;
padding-top: 5px; padding-right: 10px; padding-bottom: 20px; padding-left: 10px; } div { transition: 1s; top: calc(50% - 10px); padding: 5px 10px 20px; } /* bad */ /* good */
PREFIXES div { transform: scale(2); -webkit-transform: scale(2); -moz-transform: scale(2); -ms-transform:
scale(2); transition: 1s; -webkit-transition: 1s; -moz-transition: 1s; -ms-transition: 1s; } div { -webkit-transform: scale(2); transform: scale(2); transition: 1s; } /* bad */ /* good */
ANIMATIONS div:hover { animation: move 1s forwards; } @keyframes move
{ 100% { margin-left: 100px; } } div:hover { transition: 1s; transform: translateX(100px); } /* bad */ /* good */
UNITS div { margin: 0px; font-size: .9em; line-height: 22px; transition:
500ms; } div { margin: 0; font-size: .9rem; line-height: 1.5; transition: .5s; } /* bad */ /* good */
COLORS div { color: hsl(103, 54%, 43%); } div {
color: #5a3; } /* bad */ /* good */
DRAWING div::before { content: url(white-circle.svg); } div::before { content: "";
display: block; width: 20px; height: 20px; border-radius: 50%; background: #fff; } /* bad */ /* good */
None