SlideShare ist ein Scribd-Unternehmen logo
1 von 132
Downloaden Sie, um offline zu lesen
Stop Hitting
Yourself:CSS
Design Patterns
that
Scale
@klamping
What works for
BIG
Doesn’t work for
small
Because we build for small
Because we build for small
We struggle
with BIG
ScaleThe ability to
reuse add fix
ScaleThe ability to
CODE
reuse add fix
ScaleThe ability to
CODE
reuse add fix
ScaleThe ability to
CODE
Reuse Code
Specific code
is too specific
Name Required
Error
Name Required
Error
#E9F2F9
Name Required
Error
#E9F2F9
#9CC4E4
<div class="error">
<h1>Error:</h1>
<p>Name Required</p>
</div>
.error h1 {
color: #E9F2F9;
}
.error p {
color: #9CC4E4;
}
But is it reusable?
Simple and
Semantic
Think
Think
Things I hate:
•Lists
•Irony
•Clichés
My Life
Things I hate:
•Lists
•Irony
•Clichés
My Life #E9F2F9
#9CC4E4
<div id="content">
<h1>My Life</h1>
<aside>
<h2>Things I Hate</h2>
<ul>
<li>Lists</li>
<li>Irony</li>
<li>Clichés</li>
</ul>
</aside>
</div>
.error h1,
#content h2 {...}
.error p,
#content li {...}
<div class="error box">
<h1 class="box-title">...</h1>
<p class="box-content">...</p>
</div>
.box .box-title {...}
.box .box-content {...}
<div id="content">
<h1>My Life</h1>
<aside class="box">
<h2 class="box-title">...</h2>
<ul class="box-content">
<li>Lists</li>
<li>Irony</li>
<li>Clichés</li>
</ul>
</aside>
</div>
<div id="content">
<h1>My Life</h1>
<aside class="box">
<h2 class="box-title">...</h2>
<ul class="box-content">
<li>Lists</li>
<li>Irony</li>
<li>Clichés</li>
</ul>
</aside>
</div>
Design
outsideyour needs
Design
outsideyour needs
Abstract your CSS,
just like other code
Design
outsideyour needs
Build components,
not implementations
Design
outsideyour needs
Literally,
think outside the box
Design
outsideyour needs
No “Magic Numbers”
.site-title {
height: 30px;
}
.site-title {
height: 30px;
}
.site-title {
min-height: 30px;
}
.site-title {
min-height: 30px;
}
.site-title {
min-height: 30px;
}
css-tricks.com/magic-numbers-in-css/
Documentation,
Examples, Styleguide
Component
Dashboards
Component List
Documentation
Examples
Code Sample
// A button suitable for giving stars to someone.
//
// :hover - Subtle hover highlight.
// .stars-given - A highlight indicating you've already
// given a star.
// .stars-given:hover - Subtle hover highlight on top of stars-
// given styling.
// .disabled - Dims the button to indicate it cannot
// be used.
//
// Styleguide 1.1.
a.button.star{
...
&.star-given{
...
}
&.disabled{
...
}
}
// A button suitable for giving stars to someone.
//
// :hover - Subtle hover highlight.
// .stars-given - A highlight indicating you've already
// given a star.
// .stars-given:hover - Subtle hover highlight on top of stars-
// given styling.
// .disabled - Dims the button to indicate it cannot
// be used.
//
// Styleguide 1.1.
a.button.star{
...
&.star-given{
...
}
&.disabled{
...
}
}
Structure
// A button suitable for giving stars to someone.
//
// :hover - Subtle hover highlight.
// .stars-given - A highlight indicating you've already
// given a star.
// .stars-given:hover - Subtle hover highlight on top of stars-
// given styling.
// .disabled - Dims the button to indicate it cannot
// be used.
//
// Styleguide 1.1.
a.button.star{
...
&.star-given{
...
}
&.disabled{
...
}
}
Description
// A button suitable for giving stars to someone.
//
// :hover - Subtle hover highlight.
// .stars-given - A highlight indicating you've already
// given a star.
// .stars-given:hover - Subtle hover highlight on top of stars-
// given styling.
// .disabled - Dims the button to indicate it cannot
// be used.
//
// Styleguide 1.1.
a.button.star{
...
&.star-given{
...
}
&.disabled{
...
}
}
Variations
Add Code
Specificity
One ID to rule them all
<div id="content">
<h1>One does not simply:</h1>
<ul>
<li>Walk into Mordor</li>
<li>Override an ID</li>
</ul>
</div>
<div id="content">
<h1>One does not simply:</h1>
<ul>
<li>Walk into Mordor</li>
<li>Override an ID</li>
</ul>
</div>
<div id="content">
<h1>One does not simply:</h1>
<ul>
<li>Walk into Mordor</li>
<li>Override an ID</li>
</ul>
</div>
#content ul {
margin-left: 10px;
}
#content ul li {
list-style: square;
}
<div id="content">
...
<aside id="related">
<h2>Other overused memes:</h2>
<ul>
<li>What if I told you...</li>
<li>I don’t always...</li>
<li>Keep calm...</li>
</ul>
</aside>
...
#content ul {
margin-left: 10px;
}
#content ul li {
list-style: square;
}
#content #related ul {
margin-left: 0;
}
#content #related ul li {
list-style: none;
background: url(rage-face.png);
}
#content ul {
margin-left: 10px;
}
#content ul li {
list-style: square;
}
#content #related ul {
margin-left: 0;
}
#content #related ul li {
list-style: none;
background: url(rage-face.png);
}
Override
#content ul {
margin-left: 10px;
}
#content ul li {
list-style: square;
}
#content #related ul {
margin-left: 0;
}
#content #related ul li {
list-style: none;
background: url(rage-face.png);
}
IDs
<div id="content">
...
<aside id="related">
<div class="warning">
<h2>This post contains:</h2>
<ul>
<li>Vulgarity</li>
<li>Grumpy Cats</li>
</ul>
</div>
...
#content #related ul {
margin-left: 0;
}
#content #related ul li {
list-style: none;
background: url(rage-face.png);
}
#content #related .warning ul {
margin-left: 10px;
}
#content #related .warning ul li {
background: none;
list-style: disc;
}
<div class="content">
<h1>One does not simply:</h1>
<ul class="list">
<li class="item">...</li>
<li class="item">...</li>
</ul>
</div>
<div class="content">
<h1>One does not simply:</h1>
<ul class="list">
<li class="item">...</li>
<li class="item">...</li>
</ul>
</div>
What?!
.content .list {
margin-left: 10px;
}
.content .list .item {
list-style: square;
}
<div class="content">
...
<aside class="related">
<h2>Other overused memes:</h2>
<ul class="rage-list">
<li class="item">...</li>
<li class="item">...</li>
<li class="item">...</li>
</ul>
</aside>
...
.content .list {...}
.content .list .item {...}
.rage-list .item {
background: url(rage-face.png);
}
.content .list {...}
.content .list .item {...}
.rage-list .item {
background: url(rage-face.png);
}
Look Ma!
No Overrides
<div class="content">
...
<aside class="related">
<div class="warning">
<h2>This post contains:</h2>
<ul class="list">
<li class="item">...</li>
<li class="item">...</li>
</ul>
</div>
...
<div class="content">
...
<aside class="related">
<div class="warning">
<h2>This post contains:</h2>
<ul class="list">
<li class="item">...</li>
<li class="item">...</li>
</ul>
</div>
...
.content .list {...}
.content .list .item {...}
.rage-list .item {...}
.warning .list .item {
list-style: disc;
}
#content ul {
margin-left: 10px;
}
#content ul li {
list-style: square;
}
#content #related ul {
margin-left: 0;
}
#content #related ul li {
list-style: none;
background: url(rage-face.png);
}
#content #related .warning ul {
margin-left: 10px;
}
#content #related .warning ul li {
background: none;
list-style: disc;
}
.content .list {
margin-left: 10px;
}
.content .list .item {
list-style: square;
}
.rage-list .item {
background: url(rage-face.png);
}
.warning .list .item {
list-style: disc;
}
.content .list {
margin-left: 10px;
}
.content .list .item {
list-style: square;
}
.rage-list .item {
background: url(rage-face.png);
}
.warning .list .item {
list-style: disc;
}
Shorter Selectors
.content .list {
margin-left: 10px;
}
.content .list .item {
list-style: square;
}
.rage-list .item {
background: url(rage-face.png);
}
.warning .list .item {
list-style: disc;
}
Less Code
.content .list {
margin-left: 10px;
}
.content .list .item {
list-style: square;
}
.rage-list .item {
background: url(rage-face.png);
}
.warning .list .item {
list-style: disc;
}
Less Duplication
.content .list {
margin-left: 10px;
}
.content .list .item {
list-style: square;
}
.rage-list .item {
background: url(rage-face.png);
}
.warning .list .item {
list-style: disc;
}
More Re-use
Write to
Re-write
Fix Bugs
http://xkcd.com/1172/
Fixing Bugs
Fixing Bugs
not the fall that
kills you
bug
^It’s
the sudden stop
Fixing Bugs
backwards compatibility^
It’s
Fear of Regression
Fear of Regression
is a friction
Fear of Regression
slows progress
Fear of Regression
stifles innovation
Fear of Regression
is what stops you
No Fear
Version your code
Don’t Push
Let teams pull
But I only have one
CSS file!
One file per
component
But I only have one
CSS file!
Man, I hate
this solution...
but it works ”
“
Man,
this solution
is messed up;
what does it
even do? ”
“
div {
background/**/: blue;
}
div {
background/**/: blue;
}
Hack or fat-finger?
div {
#color: blue;
}
div {
#color: blue;
}
Huh?
CSSDoc
div {
/**
* @workaround IE color bug
* @affected IE6, IE7, IE8
* @css-for IE6, IE7
*/
#color: blue;
}
div {
/**
* @workaround IE color bug
* @affected IE6, IE7, IE8
* @css-for IE6, IE7
*/
#color: blue;
}
div {
/**
* @workaround IE color bug
* @affected IE6, IE7, IE8
* @css-for IE6, IE7
*/
#color: blue;
}
div {
/**
* @workaround IE color bug
* @affected IE6, IE7, IE8
* @css-for IE6, IE7
*/
#color: blue;
}
div {
/**
* @workaround IE color bug
* @affected IE6, IE7, IE8
* @css-for IE6, IE7
*/
#color: blue;
}
div {
/**
* @workaround IE color bug
* @affected IE6, IE7, IE8
* @css-for IE6, IE7
*/
#color: blue;
}
div {
color: blue;
height :12px; }
p{ color:#339;}
div {
color: #0F0;
height: 12px;
}
p {
color: #339;
}
Use Design
Patterns
You already know
them
Leave out
the details
that don’t
matter
Build a
pattern
library
Don’t start
an arms
race with
selectors
Version your
CSS and
live free
again
Document
your
intentions
Treat style
with respect
SMACSS
OOCSS
CreditsFont Awesome by Dave Gandy
http://fortawesome.github.com/Font-Awesome
Inconsolata Font
http://www.levien.com/type/myfonts/inconsolata.html
Kudos to Michael P. Gilbert
http://www.mpgilbert.com/
Thanks
@klamping

Weitere ähnliche Inhalte

Kürzlich hochgeladen

DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfAlex Barbosa Coqueiro
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostZilliz
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 

Kürzlich hochgeladen (20)

DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
Unraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdfUnraveling Multimodality with Large Language Models.pdf
Unraveling Multimodality with Large Language Models.pdf
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 

Empfohlen

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by HubspotMarius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 

Empfohlen (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

Stop Hitting Yourself: CSS Design Patterns that Scale