SlideShare a Scribd company logo
IN A ROCKET
Learn front-end development at rocket speed
CSS CSS FUNDAMENTALS
Specificity
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
CASCADE SPECIFICITY
+
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
Web page title
index.html
HTML CSS
h1 { color: blue; }
p { color: red; }
input { color: pink; }
h1 { color: green; }
CASCADE
I'm a header
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
Web page title
index.html
HTML CSS
<html>
<head>
<link rel="stylesheet" href="styles.css">
<style>
h1 { color: blue; }
</style>
</head>
<body>
<h1 style="color: green">I'm a header</h1>
</body>
</html>
CASCADE
I'm a header
h1 { color: red; }
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
CASCADE SPECIFICITY
+
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
HTML CSS
Browser
SPECIFICITY
<body>
<header>
<h1>I'm a header</h1>
</header>
</body>
header h1 { color: green; }
h1 { color: blue; }
Web page title
index.html
I'm a header
The h1 selector position is better for cascade, 

but header h1 prevails because is more specific.
READY TO USE CODE
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
ElementClass
Pseudo-class
Attribute
IDInline
(style attribute)
selector
0 000
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
•Soy el primer enlace de una lista.

•Soy el segundo enlace de una lista.

•Soy el tercer enlace de una lista.
My links list
index.html
ul li a
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
ElementClass
Pseudo-class
Attribute
IDInline
(style attribute)
ul li a
0 000
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
ElementClass
Pseudo-class
Attribute
IDInline
(style attribute)
ul li a
0 300
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
•Soy el primer enlace de una lista.

•Soy el segundo enlace de una lista.

•Soy el tercer enlace de una lista.
My links list
index.html
ul li a
.lk-list
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
ElementClass
Pseudo-class
Attribute
IDInline
(style attribute)
.lk-list
0 000
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
ElementClass
Pseudo-class
Attribute
IDInline
(style attribute)
.lk-list
1 000
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
•Soy el primer enlace de una lista.

•Soy el segundo enlace de una lista.

•Soy el tercer enlace de una lista.
My links list
index.html
ul li a
.lk-list
#lk-list
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
ElementClass
Pseudo-class
Attribute
IDInline
(style attribute)
#lk-list
0 000
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
ElementClass
Pseudo-class
Attribute
IDInline
(style attribute)
#lk-list
0 010
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
CAUTION
•Soy el primer enlace de una lista.

•Soy el segundo enlace de una lista.

•Soy el tercer enlace de una lista.
My links list
index.html
ul li a
.lk-list
#lk-list { }
<a style=""...
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
ElementClass
Pseudo-class
Attribute
IDInline
(style attribute)
<a style=""...
0 000
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
ElementClass
Pseudo-class
Attribute
IDInline
(style attribute)
<a style=""...
0 001
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
LET'S PLAY!
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
ElementClass
Pseudo-class
Attribute
IDInline
html body div div h2
0 000
ElementClass
Pseudo-class
Attribute
IDInline
.header-important
0 000
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
ElementClass
Pseudo-class
Attribute
IDInline
html body div div h2
0 500
ElementClass
Pseudo-class
Attribute
IDInline
.header-important
1 000
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
ElementClass
Pseudo-class
Attribute
IDInline
#info
0 000
ElementClass
Pseudo-class
Attribute
IDInline
.box .info p
0 000
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
ElementClass
Pseudo-class
Attribute
IDInline
#info
0 010
ElementClass
Pseudo-class
Attribute
IDInline
.box .info p
2 100
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
ElementClass
Pseudo-class
Attribute
IDInline
ul#nav li.active a
0 000
ElementClass
Pseudo-class
Attribute
IDInline
#lk-special
0 000
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
ElementClass
Pseudo-class
Attribute
IDInline
ul#nav li.active a
1 310
ElementClass
Pseudo-class
Attribute
IDInline
#lk-special
0 010
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
ElementClass
Pseudo-class
Attribute
IDInline
#box ul li a
0 000
ElementClass
Pseudo-class
Attribute
IDInline
li a .lk-important
0 000
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
ElementClass
Pseudo-class
Attribute
IDInline
#box ul li a
0 310
ElementClass
Pseudo-class
Attribute
IDInline
li a .lk-important
1 200
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
SPECIFICITY WARS
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
TOOLS: SPECIFICITY CALCULATOR
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
TOOLS: VISUAL STUDIO CODE
Just hover your pointer over a selector
CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com
CASCADE SPECIFICITY
+
Learn front-end development at rocket speed
inarocket.com
by miguelsanchez.com
YOU CAN CONTINUE THIS COURSE FOR FREE ON
+ READY TO USE CODE
+ QUIZZES
+ FREE UPDATES
We respect your time

No more blah blah videos. Just straight to
the point slides with relevant information.
Ready to use code

Real code you can just copy and paste into
your real projects.
Step by step guides

Clear and concise steps to build real use
solutions. No missed points.
Learn front-end development at rocket speed
inarocket.com
IN A ROCKET
Learn front-end development at rocket speed
CSS CSS FUNDAMENTALS
Specificity

More Related Content

What's hot (20)

PDF
Styling with CSS
Mike Crabb
 
KEY
Flexible site structure with cake php
andygale
 
PDF
HTML Bootstrap Workshop
vincentleeuwen
 
PDF
Layout with CSS
Mike Crabb
 
PDF
Web Design Bootcamp - Day1
Aslam Najeebdeen
 
PDF
Intro to WordPress theme development
Thad Allender
 
PPTX
Rapid and Responsive - UX to Prototype with Bootstrap
Josh Jeffryes
 
PPT
WordPress theme frameworks
Eddie Johnston
 
PPT
Even faster web sites presentation 3
Felipe Lavín
 
PDF
An Intro to HTML & CSS
Shay Howe
 
PPT
Please dont touch-3.6-jsday
Francesco Fullone
 
PDF
Introduction to HTML and CSS
Mario Hernandez
 
PDF
Modular HTML & CSS Turbo Workshop
Shay Howe
 
PDF
Intro to CSS
Randy Oest II
 
PDF
Modular HTML & CSS Workshop
Shay Howe
 
PPTX
Web 102 INtro to CSS
Hawkman Academy
 
PDF
Even faster web sites
Felipe Lavín
 
PDF
Prototyping w/HTML5 and CSS3
Todd Zaki Warfel
 
PPTX
Introduction to HTML and CSS
danpaquette
 
KEY
ARTDM 171, Week 5: CSS
Gilbert Guerrero
 
Styling with CSS
Mike Crabb
 
Flexible site structure with cake php
andygale
 
HTML Bootstrap Workshop
vincentleeuwen
 
Layout with CSS
Mike Crabb
 
Web Design Bootcamp - Day1
Aslam Najeebdeen
 
Intro to WordPress theme development
Thad Allender
 
Rapid and Responsive - UX to Prototype with Bootstrap
Josh Jeffryes
 
WordPress theme frameworks
Eddie Johnston
 
Even faster web sites presentation 3
Felipe Lavín
 
An Intro to HTML & CSS
Shay Howe
 
Please dont touch-3.6-jsday
Francesco Fullone
 
Introduction to HTML and CSS
Mario Hernandez
 
Modular HTML & CSS Turbo Workshop
Shay Howe
 
Intro to CSS
Randy Oest II
 
Modular HTML & CSS Workshop
Shay Howe
 
Web 102 INtro to CSS
Hawkman Academy
 
Even faster web sites
Felipe Lavín
 
Prototyping w/HTML5 and CSS3
Todd Zaki Warfel
 
Introduction to HTML and CSS
danpaquette
 
ARTDM 171, Week 5: CSS
Gilbert Guerrero
 

Similar to 13- Learn CSS Fundamentals / Specificity (20)

PPTX
css v1 guru
GuruPada Das
 
PDF
12- Learn CSS Fundamentals / Mix & group
In a Rocket
 
PPT
Css
myrajendra
 
PPTX
Css 101
Rhyan Mahazudin
 
PPT
How Cascading Style Sheets (CSS) Works
Amit Tyagi
 
PPTX
Cascading style-sheet-
Nimrakhan89
 
PDF
Girl Develop It Cincinnati: Intro to HTML/CSS Class 2
Erin M. Kidwell
 
PPTX
FFW Gabrovo PMG - CSS
Toni Kolev
 
ODP
An Introduction to Cascading Style Sheets (CSS3)
Ardee Aram
 
PPTX
Lab#1 - Front End Development
Walid Ashraf
 
PPT
Make Css easy(part:2) : easy tips for css(part:2)
shabab shihan
 
PPT
Basic css
Gopinath Ambothi
 
PDF
11- Learn CSS Fundamentals / Combinators
In a Rocket
 
PPTX
Cascading style sheet
Michael Jhon
 
PPT
css-presentation.ppt
prathur68
 
PPT
Css week11 2020 2021 for g10 by eng.osama ghandour
Osama Ghandour Geris
 
PPT
Introduction to Cascading Style Sheets
Tushar Joshi
 
PPT
Unit 2-CSS & Bootstrap.ppt
TusharTikia
 
css v1 guru
GuruPada Das
 
12- Learn CSS Fundamentals / Mix & group
In a Rocket
 
How Cascading Style Sheets (CSS) Works
Amit Tyagi
 
Cascading style-sheet-
Nimrakhan89
 
Girl Develop It Cincinnati: Intro to HTML/CSS Class 2
Erin M. Kidwell
 
FFW Gabrovo PMG - CSS
Toni Kolev
 
An Introduction to Cascading Style Sheets (CSS3)
Ardee Aram
 
Lab#1 - Front End Development
Walid Ashraf
 
Make Css easy(part:2) : easy tips for css(part:2)
shabab shihan
 
Basic css
Gopinath Ambothi
 
11- Learn CSS Fundamentals / Combinators
In a Rocket
 
Cascading style sheet
Michael Jhon
 
css-presentation.ppt
prathur68
 
Css week11 2020 2021 for g10 by eng.osama ghandour
Osama Ghandour Geris
 
Introduction to Cascading Style Sheets
Tushar Joshi
 
Unit 2-CSS & Bootstrap.ppt
TusharTikia
 
Ad

More from In a Rocket (11)

PDF
3- Learn Flexbox & CSS Grid / Container & items
In a Rocket
 
PDF
2- Learn Flexbox & CSS Grid / Context
In a Rocket
 
PDF
1- Learn Flexbox & CSS Grid / Environment setup
In a Rocket
 
PDF
17- Learn CSS Fundamentals / Units
In a Rocket
 
PDF
16- Learn CSS Fundamentals / Background
In a Rocket
 
PDF
15- Learn CSS Fundamentals / Color
In a Rocket
 
PDF
8- Learn CSS Fundamentals / Attribute selectors
In a Rocket
 
PDF
2- Learn HTML Fundamentals / Text Formatting
In a Rocket
 
PDF
1- Learn HTML Fundamentals / Start in 5 Minutes
In a Rocket
 
PDF
Learn SUIT: CSS Naming Convention
In a Rocket
 
PDF
Learn BEM: CSS Naming Convention
In a Rocket
 
3- Learn Flexbox & CSS Grid / Container & items
In a Rocket
 
2- Learn Flexbox & CSS Grid / Context
In a Rocket
 
1- Learn Flexbox & CSS Grid / Environment setup
In a Rocket
 
17- Learn CSS Fundamentals / Units
In a Rocket
 
16- Learn CSS Fundamentals / Background
In a Rocket
 
15- Learn CSS Fundamentals / Color
In a Rocket
 
8- Learn CSS Fundamentals / Attribute selectors
In a Rocket
 
2- Learn HTML Fundamentals / Text Formatting
In a Rocket
 
1- Learn HTML Fundamentals / Start in 5 Minutes
In a Rocket
 
Learn SUIT: CSS Naming Convention
In a Rocket
 
Learn BEM: CSS Naming Convention
In a Rocket
 
Ad

Recently uploaded (20)

PPTX
The ARUBA Kind of new Proposal Umum .pptx
andiwarneri
 
PDF
Beginning-Laravel-Build-Websites-with-Laravel-5.8-by-Sanjib-Sinha-z-lib.org.pdf
TagumLibuganonRiverB
 
PDF
B M Mostofa Kamal Al-Azad [Document & Localization Expert]
Mostofa Kamal Al-Azad
 
PDF
What Is Google Chrome? Fast & Secure Web Browser Guide
hgfdsqetuiplmnvcz43
 
PPTX
My Mother At 66! (2).pptx00000000000000000000000000000
vedapattisiddharth
 
PDF
web application development company in bangalore.pdf
https://dkpractice.co.in/seo.html tech
 
PPT
Almos Entirely Correct Mixing with Apps to Voting
gapati2964
 
PDF
ContextForge MCP Gateway - the missing proxy for AI Agents and Tools
Mihai Criveti
 
PDF
Transmission Control Protocol (TCP) and Starlink
APNIC
 
PDF
Materi tentang From Digital Economy to Fintech.pdf
Abdul Hakim
 
PDF
Download Google Chrome for Fast and Secure Web Browsing Experience
hgfdsqetuiplmnvcz43
 
PPTX
Class_4_Limbgvchgchgchgchgchgcjhgchgcnked_Lists.pptx
test123n
 
PDF
03 Internal Analysis Strategik Manajemen.pdf
AhmadRifaldhi
 
PPTX
原版一样(ISM毕业证书)德国多特蒙德国际管理学院毕业证多少钱
taqyed
 
PPTX
Q1 English3 Week5 [email protected]
JenniferCawaling1
 
PDF
I Want to join occult brotherhood for money ritual#((+2347089754903))
haragonoccult
 
PDF
Clive Dickens RedTech Public Copy - Collaborate or Die
Clive Dickens
 
PDF
Google Chrome vs Other Browsers: Why Users Still Prefer It.pdf
hgfdsqetuiplmnvcz43
 
PDF
Slides: Eco Economic Epochs for The World Game (s) pdf
Steven McGee
 
PDF
BroadLink Cloud Service introduction.pdf
DevendraDwivdi1
 
The ARUBA Kind of new Proposal Umum .pptx
andiwarneri
 
Beginning-Laravel-Build-Websites-with-Laravel-5.8-by-Sanjib-Sinha-z-lib.org.pdf
TagumLibuganonRiverB
 
B M Mostofa Kamal Al-Azad [Document & Localization Expert]
Mostofa Kamal Al-Azad
 
What Is Google Chrome? Fast & Secure Web Browser Guide
hgfdsqetuiplmnvcz43
 
My Mother At 66! (2).pptx00000000000000000000000000000
vedapattisiddharth
 
web application development company in bangalore.pdf
https://dkpractice.co.in/seo.html tech
 
Almos Entirely Correct Mixing with Apps to Voting
gapati2964
 
ContextForge MCP Gateway - the missing proxy for AI Agents and Tools
Mihai Criveti
 
Transmission Control Protocol (TCP) and Starlink
APNIC
 
Materi tentang From Digital Economy to Fintech.pdf
Abdul Hakim
 
Download Google Chrome for Fast and Secure Web Browsing Experience
hgfdsqetuiplmnvcz43
 
Class_4_Limbgvchgchgchgchgchgcjhgchgcnked_Lists.pptx
test123n
 
03 Internal Analysis Strategik Manajemen.pdf
AhmadRifaldhi
 
原版一样(ISM毕业证书)德国多特蒙德国际管理学院毕业证多少钱
taqyed
 
I Want to join occult brotherhood for money ritual#((+2347089754903))
haragonoccult
 
Clive Dickens RedTech Public Copy - Collaborate or Die
Clive Dickens
 
Google Chrome vs Other Browsers: Why Users Still Prefer It.pdf
hgfdsqetuiplmnvcz43
 
Slides: Eco Economic Epochs for The World Game (s) pdf
Steven McGee
 
BroadLink Cloud Service introduction.pdf
DevendraDwivdi1
 

13- Learn CSS Fundamentals / Specificity

  • 1. IN A ROCKET Learn front-end development at rocket speed CSS CSS FUNDAMENTALS Specificity
  • 2. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com CASCADE SPECIFICITY +
  • 3. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com Web page title index.html HTML CSS h1 { color: blue; } p { color: red; } input { color: pink; } h1 { color: green; } CASCADE I'm a header
  • 4. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com Web page title index.html HTML CSS <html> <head> <link rel="stylesheet" href="styles.css"> <style> h1 { color: blue; } </style> </head> <body> <h1 style="color: green">I'm a header</h1> </body> </html> CASCADE I'm a header h1 { color: red; }
  • 5. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com CASCADE SPECIFICITY +
  • 6. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com HTML CSS Browser SPECIFICITY <body> <header> <h1>I'm a header</h1> </header> </body> header h1 { color: green; } h1 { color: blue; } Web page title index.html I'm a header The h1 selector position is better for cascade, but header h1 prevails because is more specific. READY TO USE CODE
  • 7. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com ElementClass Pseudo-class Attribute IDInline (style attribute) selector 0 000
  • 8. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com •Soy el primer enlace de una lista. •Soy el segundo enlace de una lista. •Soy el tercer enlace de una lista. My links list index.html ul li a
  • 9. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com ElementClass Pseudo-class Attribute IDInline (style attribute) ul li a 0 000
  • 10. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com ElementClass Pseudo-class Attribute IDInline (style attribute) ul li a 0 300
  • 11. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com •Soy el primer enlace de una lista. •Soy el segundo enlace de una lista. •Soy el tercer enlace de una lista. My links list index.html ul li a .lk-list
  • 12. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com ElementClass Pseudo-class Attribute IDInline (style attribute) .lk-list 0 000
  • 13. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com ElementClass Pseudo-class Attribute IDInline (style attribute) .lk-list 1 000
  • 14. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com •Soy el primer enlace de una lista. •Soy el segundo enlace de una lista. •Soy el tercer enlace de una lista. My links list index.html ul li a .lk-list #lk-list
  • 15. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com ElementClass Pseudo-class Attribute IDInline (style attribute) #lk-list 0 000
  • 16. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com ElementClass Pseudo-class Attribute IDInline (style attribute) #lk-list 0 010
  • 17. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com CAUTION •Soy el primer enlace de una lista. •Soy el segundo enlace de una lista. •Soy el tercer enlace de una lista. My links list index.html ul li a .lk-list #lk-list { } <a style=""...
  • 18. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com ElementClass Pseudo-class Attribute IDInline (style attribute) <a style=""... 0 000
  • 19. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com ElementClass Pseudo-class Attribute IDInline (style attribute) <a style=""... 0 001
  • 20. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com LET'S PLAY!
  • 21. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com ElementClass Pseudo-class Attribute IDInline html body div div h2 0 000 ElementClass Pseudo-class Attribute IDInline .header-important 0 000
  • 22. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com ElementClass Pseudo-class Attribute IDInline html body div div h2 0 500 ElementClass Pseudo-class Attribute IDInline .header-important 1 000
  • 23. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com ElementClass Pseudo-class Attribute IDInline #info 0 000 ElementClass Pseudo-class Attribute IDInline .box .info p 0 000
  • 24. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com ElementClass Pseudo-class Attribute IDInline #info 0 010 ElementClass Pseudo-class Attribute IDInline .box .info p 2 100
  • 25. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com ElementClass Pseudo-class Attribute IDInline ul#nav li.active a 0 000 ElementClass Pseudo-class Attribute IDInline #lk-special 0 000
  • 26. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com ElementClass Pseudo-class Attribute IDInline ul#nav li.active a 1 310 ElementClass Pseudo-class Attribute IDInline #lk-special 0 010
  • 27. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com ElementClass Pseudo-class Attribute IDInline #box ul li a 0 000 ElementClass Pseudo-class Attribute IDInline li a .lk-important 0 000
  • 28. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com ElementClass Pseudo-class Attribute IDInline #box ul li a 0 310 ElementClass Pseudo-class Attribute IDInline li a .lk-important 1 200
  • 29. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com SPECIFICITY WARS
  • 30. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com TOOLS: SPECIFICITY CALCULATOR
  • 31. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com TOOLS: VISUAL STUDIO CODE Just hover your pointer over a selector
  • 32. CSS FUNDAMENTALS: Build a strong foundation by solving real cases inarocket.com CASCADE SPECIFICITY +
  • 33. Learn front-end development at rocket speed inarocket.com by miguelsanchez.com YOU CAN CONTINUE THIS COURSE FOR FREE ON + READY TO USE CODE + QUIZZES + FREE UPDATES
  • 34. We respect your time
 No more blah blah videos. Just straight to the point slides with relevant information. Ready to use code
 Real code you can just copy and paste into your real projects. Step by step guides
 Clear and concise steps to build real use solutions. No missed points. Learn front-end development at rocket speed inarocket.com
  • 35. IN A ROCKET Learn front-end development at rocket speed CSS CSS FUNDAMENTALS Specificity