SlideShare a Scribd company logo
1 of 48
CSS Selector
Speaker: Calos
Outline
1. Basics
2. Hierarchy
3. Attribute
4. Pseudo Classes
5. Pseudo Elements
Basics
*
<html>
<body>
<div>div</div>
<p>p</p>
<a href="#">a</a>
</body></html>
* {
color: red;
}
#id
<html>
<body>
<div id="aaa">div</div>
<div>div</div>
<div id="bbb">div</div>
</body></html>
#aaa { color: blue; }#bbb { color: green; }
.class
<html>
<body>
<div class="aaa">div</div>
<div class="big-font">div</div>
<div class="bbb big-font">div</div>
</body></html>
.aaa { color: blue; }.bbb { color:
green; }.big-font { font-size: 36px; }
element
<html>
<body>
<div>div</div>
<p>p</p>
<a href="#">a</a>
</body></html>
div { color: blue; }a { font-size: 36px; color:
black; }
selector1, selector2 ...
<html>
<body>
<div>div</div>
<p>p</p>
<span>span</a>
</body></html>
div, span { color: blue; }p { font-size:
36px; }
Hierarchy
ancestor descendant
<html>
<body>
<div>
<span>span</span>
<span class="big-font">span</span>
<p>p</p>
</div>
<div id="div-b">
<span>span</span>
<span>span</span>
<p class="big-font">p</p>
</div>
</body></html>
span { color: blue; }.big-font { font-size:
36px;}#div-b p { color: red }
parent > child
<html>
<body>
<div id="div-a">
<span>span</span>
<span class="red">span</span>
</div>
<div id="div-b">
<span>span</span>
<span>span</span>
</div>
</body></html>
span { color: blue; }div > .red { color:red; }
prev + next
<html>
<body>
<div id="container">
<ul>
<li> List Item </li>
<li> List Item </li>
</ul>
<p>text</p>
<p>text</p>
</div>
</body></html>
ul + p { color: red; }
prev ~ siblings
<html>
<body>
<div id="container">
<ul>
<li> List Item </li>
<li> List Item </li>
</ul>
<p>text</p>
<p>text</p>
<span>span</span>
<p>p</p>
</div>
</body></html>
ul ~ p { color: red; }
Attribute
[attribute]
<html>
<body>
<a href="#">a</a><br/>
<a title="link" href="#">a</a><br/>
<a href="#">a</a>
</body></html>
a[title] {
color: red;
text-decoration: none;
}
[attribute=”value”]
<html>
<body>
<a href="lalala">a</a><br/>
<a href="#">a</a><br/>
<a href="macaron">a</a>
</body></html>
a[href="macaron"] {
color: red;
text-decoration: none;
}
[attribute^=”value”]
<html>
<body>
<a href="cacaron">a</a><br/>
<a href="#">a</a><br/>
<a href="macaron">a</a>
</body></html>
a[href^="ca"] {
color: red;
text-decoration: none;
}
[attribute$=”value”]
<html>
<body>
<a href="cacaron">a</a><br/>
<a href="#">a</a><br/>
<a href="macaron">a</a>
</body></html>
a[href$="ron"] {
color: red;
text-decoration: none;
}
[attribute*=”value”]
<html>
<body>
<a href="cacaron">a</a><br/>
<a href="#">a</a><br/>
<a href="macaron">a</a>
</body></html>
a[href*="ca"] {
color: red;
text-decoration: none;
}
[attribute~=”value”]
<html>
<body>
<div title="macaron">div</div>
<div title="maluron">div</div>
<div title="macaron
maluron">div</div>
</body></html>
div[title~="macaron"] { color:
red; }div[title~="maluron"] { font-size:
36px; }
Pseudo Classes
:link
<a target="_blank"
href="http://lalala/">lalala</a><a
target="_blank"
href="http://www.google.com">Google</a>
a:link {
color: blue;
}
:visited
<a target="_blank"
href="http://lalala/">lalala</a><a
target="_blank"
href="http://www.google.com">Google</a>
a:visited {
color: blue;
}
:hover
<div>DIV</div> div:hover { background: #99FF66; }
:active
<a target="_blank"
href="http://lalala/">lalala</a><a
target="_blank"
href="http://www.google.com">Google</a>
a:active {
background-color: yellow;
}
:checked
<html>
<body>
<p>
<input type="radio" name="radio" />
<span>radio 1</span>
</p>
<p>
<input type="radio" name="radio" />
<span>radio 2</span>
</p>
</body></html>
input[type="radio"]:checked + span {
color: blue;
}
:focus
<form>
First name:
<input type="text" name="firstname" /><br
/>
Last name:
<input type="text" name="lastname"
/></form>
input:focus {
background-color:yellow;
}
:after
<div class="clearfix">
<div>TEST DIV</div>
<div>TEST DIV</div>
<div>TEST DIV</div>
<div>TEST DIV</div>
<div>TEST
DIV</div></div>
.clearfix { display: inline-table; border:2px solid red; } .clearfix
div { float: left; width: 80px; height: 80px; border: 1px solid
blue; }.clearfix:after { content: "."; display: block; height: 0;
clear: both; visibility: hidden; }/* Hides from IE-mac */ *
html .clearfix {height: 1%;} .clearfix {display: block;} /* End hide
from IE-mac */
:not(selector)
<div class="cat">cat</div><div
class="dog">dog</div><div
class="cat">cat</div>
div:not(.dog) { background: #66AAFF; }
:first-child
<div class="block">
<span>SPAN</span>
<div>DIV</div>
<span>SPAN</span>
<div>DIV</div></div>
.block :first-child {
background: #66AAFF;
}
:last-child
<div class="block">
<span>SPAN</span>
<div>DIV</div>
<span>SPAN</span>
<div>DIV</div></div>
.block :last-child {
background: #66AAFF;
}
:nth-child(n)
<div class="block">
<span>SPAN</span>
<div>DIV</div>
<span>SPAN</span>
<div>DIV</div></div>
.block :nth-child(2) {
background: #66AAFF;
}
:nth-last-child(n)
<div class="block">
<span>SPAN</span>
<div>DIV</div>
<span>SPAN</span>
<div>DIV</div></div>
.block :nth-last-child(2) {
background: #66AAFF;
}
:first-of-type
<div class="block">
<span>SPAN</span>
<div>DIV</div>
<span>SPAN</span>
<div>DIV</div></div>
.block div:first-of-type {
background: #66AAFF;
}
:last-of-type
<div class="block">
<span>SPAN</span>
<div>DIV</div>
<span>SPAN</span>
<div>DIV</div></div>
.block span:last-of-type {
background: #66AAFF;
}
:nth-of-type(n)
<div class="block">
<span>SPAN</span>
<div>DIV</div>
<span>SPAN</span>
<div>DIV</div></div>
.block div:nth-of-type(2) {
background: #66AAFF;
}
:nth-last-of-type(n)
<div class="block">
<span>SPAN</span>
<div>DIV</div>
<span>SPAN</span>
<div>DIV</div></div>
.block div:nth-last-of-type(2) {
background: #66AAFF;
}
:only-child
<div>
<p>P</p>
<p>P</p></div><div>
<p>P</p></div>
:only-child { color: blue; }
:only-of-type
<div>
<p> My paragraph here. </p>
<ul>
<li> List Item </li>
<li> List Item </li>
</ul></div><div>
<p> Two paragraphs total. </p>
<p> Two paragraphs total. </p>
<ul>
<li> List Item </li>
</ul></div>
div p:only-of-type { color: red; }li:only-of-
type { font-weight: bold; }
Pseudo Elements
::first-letter
<p>Cat</p><br /><p>Dog</p> p::first-letter {
font-size: 2em;
font-weight: bold;
padding-right: 2px;
}
::first-line
<div>
<p>Cat</p>
<p>Dog</p></div>
p::first-line {
font-size: 2em;
font-weight: bold;
padding-right: 2px;
}
::after
<span>span</span><div>div</div><a
href="">a</a>
div::after {
content: 'Pseudo elements at here!';
margin-left: 20px;
color: blue;
}
::before
<span>span</span><div>div</div><a
href="">a</a>
span::before {
content: 'Pseudo elements at here!';
margin-right: 20px;
color: blue;
}
::first-line
<div>
<p>Cat</p>
<p>Dog</p></div>
p::first-line {
font-size: 2em;
font-weight: bold;
padding-right: 2px;
}
::first-line
<div>
<p>Cat</p>
<p>Dog</p></div>
p::first-line {
font-size: 2em;
font-weight: bold;
padding-right: 2px;
}
Q&A
Thanks!

More Related Content

What's hot

Getting Information through HTML Forms
Getting Information through HTML FormsGetting Information through HTML Forms
Getting Information through HTML FormsMike Crabb
 
CSS- Smacss Design Rule
CSS- Smacss Design RuleCSS- Smacss Design Rule
CSS- Smacss Design Rule皮馬 頑
 
Creating a radiobutton
Creating a radiobuttonCreating a radiobutton
Creating a radiobuttonelke92
 
Div span__object_があればいい
Div  span__object_があればいいDiv  span__object_があればいい
Div span__object_があればいいShuhei Iitsuka
 
How to code radio buttons in HTML5 and CSS Styling
How to code radio buttons in HTML5 and CSS StylingHow to code radio buttons in HTML5 and CSS Styling
How to code radio buttons in HTML5 and CSS StylingAimeeKyra
 
Internet programming lab manual
Internet programming lab manualInternet programming lab manual
Internet programming lab manualinteldualcore
 
Copy of-a-walk-around-westfall-plaza
Copy of-a-walk-around-westfall-plazaCopy of-a-walk-around-westfall-plaza
Copy of-a-walk-around-westfall-plazahelgawerth
 
Rounded Shaped Box Example 1
Rounded Shaped Box Example 1Rounded Shaped Box Example 1
Rounded Shaped Box Example 1Sibananda Panda
 

What's hot (20)

Html 5 tags
Html  5 tagsHtml  5 tags
Html 5 tags
 
Getting Information through HTML Forms
Getting Information through HTML FormsGetting Information through HTML Forms
Getting Information through HTML Forms
 
Html5 101
Html5 101Html5 101
Html5 101
 
Print this
Print thisPrint this
Print this
 
Html5 101
Html5 101Html5 101
Html5 101
 
Tercer trabajo de drapi 02
Tercer trabajo de drapi 02Tercer trabajo de drapi 02
Tercer trabajo de drapi 02
 
Html
HtmlHtml
Html
 
Emmet cheat-sheet
Emmet cheat-sheetEmmet cheat-sheet
Emmet cheat-sheet
 
CSS- Smacss Design Rule
CSS- Smacss Design RuleCSS- Smacss Design Rule
CSS- Smacss Design Rule
 
Creating a radiobutton
Creating a radiobuttonCreating a radiobutton
Creating a radiobutton
 
Slicing the web
Slicing the webSlicing the web
Slicing the web
 
Div span__object_があればいい
Div  span__object_があればいいDiv  span__object_があればいい
Div span__object_があればいい
 
HTML5 Essentials
HTML5 EssentialsHTML5 Essentials
HTML5 Essentials
 
How to code radio buttons in HTML5 and CSS Styling
How to code radio buttons in HTML5 and CSS StylingHow to code radio buttons in HTML5 and CSS Styling
How to code radio buttons in HTML5 and CSS Styling
 
Tags
TagsTags
Tags
 
Tybscrc
TybscrcTybscrc
Tybscrc
 
Html coding
Html codingHtml coding
Html coding
 
Internet programming lab manual
Internet programming lab manualInternet programming lab manual
Internet programming lab manual
 
Copy of-a-walk-around-westfall-plaza
Copy of-a-walk-around-westfall-plazaCopy of-a-walk-around-westfall-plaza
Copy of-a-walk-around-westfall-plaza
 
Rounded Shaped Box Example 1
Rounded Shaped Box Example 1Rounded Shaped Box Example 1
Rounded Shaped Box Example 1
 

Similar to CSS Selector

2. CSS Chapter Roadmap and Full Source Code.pdf
2. CSS Chapter Roadmap and Full Source Code.pdf2. CSS Chapter Roadmap and Full Source Code.pdf
2. CSS Chapter Roadmap and Full Source Code.pdfBdBangladesh
 
[SUTD GDSC] Intro to HTML and CSS
[SUTD GDSC] Intro to HTML and CSS[SUTD GDSC] Intro to HTML and CSS
[SUTD GDSC] Intro to HTML and CSSBeckhamWee
 
Object-Oriented CSS 從 OOCSS, SMACSS, BEM 到 AMCSS
Object-Oriented CSS 從 OOCSS, SMACSS, BEM 到 AMCSSObject-Oriented CSS 從 OOCSS, SMACSS, BEM 到 AMCSS
Object-Oriented CSS 從 OOCSS, SMACSS, BEM 到 AMCSSLi-Wei Lu
 
HTML [Basic] --by Abdulla-al Baset
HTML [Basic] --by Abdulla-al BasetHTML [Basic] --by Abdulla-al Baset
HTML [Basic] --by Abdulla-al BasetAbdulla-al Baset
 
An Introduction to Cascading Style Sheets (CSS3)
An Introduction to Cascading Style Sheets (CSS3)An Introduction to Cascading Style Sheets (CSS3)
An Introduction to Cascading Style Sheets (CSS3)Ardee Aram
 
Bca sem 6 php practicals 1to12
Bca sem 6 php practicals 1to12Bca sem 6 php practicals 1to12
Bca sem 6 php practicals 1to12Hitesh Patel
 
krish (1).pdf
krish (1).pdfkrish (1).pdf
krish (1).pdfKrish11A
 
Creating HTML Pages
Creating HTML PagesCreating HTML Pages
Creating HTML PagesMike Crabb
 
Web Design Course: CSS lecture 1
Web Design Course: CSS lecture 1Web Design Course: CSS lecture 1
Web Design Course: CSS lecture 1Gheyath M. Othman
 

Similar to CSS Selector (20)

Css1
Css1Css1
Css1
 
2. CSS Chapter Roadmap and Full Source Code.pdf
2. CSS Chapter Roadmap and Full Source Code.pdf2. CSS Chapter Roadmap and Full Source Code.pdf
2. CSS Chapter Roadmap and Full Source Code.pdf
 
Radio sarkub simple
Radio sarkub   simpleRadio sarkub   simple
Radio sarkub simple
 
Web technology lab manual
Web technology lab manualWeb technology lab manual
Web technology lab manual
 
[SUTD GDSC] Intro to HTML and CSS
[SUTD GDSC] Intro to HTML and CSS[SUTD GDSC] Intro to HTML and CSS
[SUTD GDSC] Intro to HTML and CSS
 
Html advance
Html advanceHtml advance
Html advance
 
HTML-Advance.pptx
HTML-Advance.pptxHTML-Advance.pptx
HTML-Advance.pptx
 
Html Hands On
Html Hands OnHtml Hands On
Html Hands On
 
Body
BodyBody
Body
 
Object-Oriented CSS 從 OOCSS, SMACSS, BEM 到 AMCSS
Object-Oriented CSS 從 OOCSS, SMACSS, BEM 到 AMCSSObject-Oriented CSS 從 OOCSS, SMACSS, BEM 到 AMCSS
Object-Oriented CSS 從 OOCSS, SMACSS, BEM 到 AMCSS
 
HTML [Basic] --by Abdulla-al Baset
HTML [Basic] --by Abdulla-al BasetHTML [Basic] --by Abdulla-al Baset
HTML [Basic] --by Abdulla-al Baset
 
An Introduction to Cascading Style Sheets (CSS3)
An Introduction to Cascading Style Sheets (CSS3)An Introduction to Cascading Style Sheets (CSS3)
An Introduction to Cascading Style Sheets (CSS3)
 
Capstone Website Code
Capstone Website CodeCapstone Website Code
Capstone Website Code
 
Bca sem 6 php practicals 1to12
Bca sem 6 php practicals 1to12Bca sem 6 php practicals 1to12
Bca sem 6 php practicals 1to12
 
Web technology
Web technologyWeb technology
Web technology
 
krish (1).pdf
krish (1).pdfkrish (1).pdf
krish (1).pdf
 
Creating HTML Pages
Creating HTML PagesCreating HTML Pages
Creating HTML Pages
 
Web Design Course: CSS lecture 1
Web Design Course: CSS lecture 1Web Design Course: CSS lecture 1
Web Design Course: CSS lecture 1
 
Css selectors
Css selectorsCss selectors
Css selectors
 
Introduction html
Introduction htmlIntroduction html
Introduction html
 

Recently uploaded

3D Printing And Designing Final Report.pdf
3D Printing And Designing Final Report.pdf3D Printing And Designing Final Report.pdf
3D Printing And Designing Final Report.pdfSwaraliBorhade
 
Design principles on typography in design
Design principles on typography in designDesign principles on typography in design
Design principles on typography in designnooreen17
 
call girls in Harsh Vihar (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Harsh Vihar (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Harsh Vihar (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Harsh Vihar (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
办理(宾州州立毕业证书)美国宾夕法尼亚州立大学毕业证成绩单原版一比一
办理(宾州州立毕业证书)美国宾夕法尼亚州立大学毕业证成绩单原版一比一办理(宾州州立毕业证书)美国宾夕法尼亚州立大学毕业证成绩单原版一比一
办理(宾州州立毕业证书)美国宾夕法尼亚州立大学毕业证成绩单原版一比一F La
 
shot list for my tv series two steps back
shot list for my tv series two steps backshot list for my tv series two steps back
shot list for my tv series two steps back17lcow074
 
Mookuthi is an artisanal nose ornament brand based in Madras.
Mookuthi is an artisanal nose ornament brand based in Madras.Mookuthi is an artisanal nose ornament brand based in Madras.
Mookuthi is an artisanal nose ornament brand based in Madras.Mookuthi
 
MT. Marseille an Archipelago. Strategies for Integrating Residential Communit...
MT. Marseille an Archipelago. Strategies for Integrating Residential Communit...MT. Marseille an Archipelago. Strategies for Integrating Residential Communit...
MT. Marseille an Archipelago. Strategies for Integrating Residential Communit...katerynaivanenko1
 
1比1办理美国北卡罗莱纳州立大学毕业证成绩单pdf电子版制作修改
1比1办理美国北卡罗莱纳州立大学毕业证成绩单pdf电子版制作修改1比1办理美国北卡罗莱纳州立大学毕业证成绩单pdf电子版制作修改
1比1办理美国北卡罗莱纳州立大学毕业证成绩单pdf电子版制作修改yuu sss
 
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130Suhani Kapoor
 
ARt app | UX Case Study
ARt app | UX Case StudyARt app | UX Case Study
ARt app | UX Case StudySophia Viganò
 
Call Girls in Okhla Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Okhla Delhi 💯Call Us 🔝8264348440🔝Call Girls in Okhla Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Okhla Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
FiveHypotheses_UIDMasterclass_18April2024.pdf
FiveHypotheses_UIDMasterclass_18April2024.pdfFiveHypotheses_UIDMasterclass_18April2024.pdf
FiveHypotheses_UIDMasterclass_18April2024.pdfShivakumar Viswanathan
 
Untitled presedddddddddddddddddntation (1).pptx
Untitled presedddddddddddddddddntation (1).pptxUntitled presedddddddddddddddddntation (1).pptx
Untitled presedddddddddddddddddntation (1).pptxmapanig881
 
定制(RMIT毕业证书)澳洲墨尔本皇家理工大学毕业证成绩单原版一比一
定制(RMIT毕业证书)澳洲墨尔本皇家理工大学毕业证成绩单原版一比一定制(RMIT毕业证书)澳洲墨尔本皇家理工大学毕业证成绩单原版一比一
定制(RMIT毕业证书)澳洲墨尔本皇家理工大学毕业证成绩单原版一比一lvtagr7
 
'CASE STUDY OF INDIRA PARYAVARAN BHAVAN DELHI ,
'CASE STUDY OF INDIRA PARYAVARAN BHAVAN DELHI ,'CASE STUDY OF INDIRA PARYAVARAN BHAVAN DELHI ,
'CASE STUDY OF INDIRA PARYAVARAN BHAVAN DELHI ,Aginakm1
 
PORTFOLIO DE ARQUITECTURA CRISTOBAL HERAUD 2024
PORTFOLIO DE ARQUITECTURA CRISTOBAL HERAUD 2024PORTFOLIO DE ARQUITECTURA CRISTOBAL HERAUD 2024
PORTFOLIO DE ARQUITECTURA CRISTOBAL HERAUD 2024CristobalHeraud
 
昆士兰大学毕业证(UQ毕业证)#文凭成绩单#真实留信学历认证永久存档
昆士兰大学毕业证(UQ毕业证)#文凭成绩单#真实留信学历认证永久存档昆士兰大学毕业证(UQ毕业证)#文凭成绩单#真实留信学历认证永久存档
昆士兰大学毕业证(UQ毕业证)#文凭成绩单#真实留信学历认证永久存档208367051
 
Architecture case study India Habitat Centre, Delhi.pdf
Architecture case study India Habitat Centre, Delhi.pdfArchitecture case study India Habitat Centre, Delhi.pdf
Architecture case study India Habitat Centre, Delhi.pdfSumit Lathwal
 
Introduction-to-Canva-and-Graphic-Design-Basics.pptx
Introduction-to-Canva-and-Graphic-Design-Basics.pptxIntroduction-to-Canva-and-Graphic-Design-Basics.pptx
Introduction-to-Canva-and-Graphic-Design-Basics.pptxnewslab143
 

Recently uploaded (20)

3D Printing And Designing Final Report.pdf
3D Printing And Designing Final Report.pdf3D Printing And Designing Final Report.pdf
3D Printing And Designing Final Report.pdf
 
Design principles on typography in design
Design principles on typography in designDesign principles on typography in design
Design principles on typography in design
 
call girls in Harsh Vihar (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Harsh Vihar (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Harsh Vihar (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Harsh Vihar (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
办理(宾州州立毕业证书)美国宾夕法尼亚州立大学毕业证成绩单原版一比一
办理(宾州州立毕业证书)美国宾夕法尼亚州立大学毕业证成绩单原版一比一办理(宾州州立毕业证书)美国宾夕法尼亚州立大学毕业证成绩单原版一比一
办理(宾州州立毕业证书)美国宾夕法尼亚州立大学毕业证成绩单原版一比一
 
shot list for my tv series two steps back
shot list for my tv series two steps backshot list for my tv series two steps back
shot list for my tv series two steps back
 
Mookuthi is an artisanal nose ornament brand based in Madras.
Mookuthi is an artisanal nose ornament brand based in Madras.Mookuthi is an artisanal nose ornament brand based in Madras.
Mookuthi is an artisanal nose ornament brand based in Madras.
 
MT. Marseille an Archipelago. Strategies for Integrating Residential Communit...
MT. Marseille an Archipelago. Strategies for Integrating Residential Communit...MT. Marseille an Archipelago. Strategies for Integrating Residential Communit...
MT. Marseille an Archipelago. Strategies for Integrating Residential Communit...
 
1比1办理美国北卡罗莱纳州立大学毕业证成绩单pdf电子版制作修改
1比1办理美国北卡罗莱纳州立大学毕业证成绩单pdf电子版制作修改1比1办理美国北卡罗莱纳州立大学毕业证成绩单pdf电子版制作修改
1比1办理美国北卡罗莱纳州立大学毕业证成绩单pdf电子版制作修改
 
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
 
ARt app | UX Case Study
ARt app | UX Case StudyARt app | UX Case Study
ARt app | UX Case Study
 
Call Girls in Okhla Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Okhla Delhi 💯Call Us 🔝8264348440🔝Call Girls in Okhla Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Okhla Delhi 💯Call Us 🔝8264348440🔝
 
FiveHypotheses_UIDMasterclass_18April2024.pdf
FiveHypotheses_UIDMasterclass_18April2024.pdfFiveHypotheses_UIDMasterclass_18April2024.pdf
FiveHypotheses_UIDMasterclass_18April2024.pdf
 
Untitled presedddddddddddddddddntation (1).pptx
Untitled presedddddddddddddddddntation (1).pptxUntitled presedddddddddddddddddntation (1).pptx
Untitled presedddddddddddddddddntation (1).pptx
 
定制(RMIT毕业证书)澳洲墨尔本皇家理工大学毕业证成绩单原版一比一
定制(RMIT毕业证书)澳洲墨尔本皇家理工大学毕业证成绩单原版一比一定制(RMIT毕业证书)澳洲墨尔本皇家理工大学毕业证成绩单原版一比一
定制(RMIT毕业证书)澳洲墨尔本皇家理工大学毕业证成绩单原版一比一
 
'CASE STUDY OF INDIRA PARYAVARAN BHAVAN DELHI ,
'CASE STUDY OF INDIRA PARYAVARAN BHAVAN DELHI ,'CASE STUDY OF INDIRA PARYAVARAN BHAVAN DELHI ,
'CASE STUDY OF INDIRA PARYAVARAN BHAVAN DELHI ,
 
Call Girls in Pratap Nagar, 9953056974 Escort Service
Call Girls in Pratap Nagar,  9953056974 Escort ServiceCall Girls in Pratap Nagar,  9953056974 Escort Service
Call Girls in Pratap Nagar, 9953056974 Escort Service
 
PORTFOLIO DE ARQUITECTURA CRISTOBAL HERAUD 2024
PORTFOLIO DE ARQUITECTURA CRISTOBAL HERAUD 2024PORTFOLIO DE ARQUITECTURA CRISTOBAL HERAUD 2024
PORTFOLIO DE ARQUITECTURA CRISTOBAL HERAUD 2024
 
昆士兰大学毕业证(UQ毕业证)#文凭成绩单#真实留信学历认证永久存档
昆士兰大学毕业证(UQ毕业证)#文凭成绩单#真实留信学历认证永久存档昆士兰大学毕业证(UQ毕业证)#文凭成绩单#真实留信学历认证永久存档
昆士兰大学毕业证(UQ毕业证)#文凭成绩单#真实留信学历认证永久存档
 
Architecture case study India Habitat Centre, Delhi.pdf
Architecture case study India Habitat Centre, Delhi.pdfArchitecture case study India Habitat Centre, Delhi.pdf
Architecture case study India Habitat Centre, Delhi.pdf
 
Introduction-to-Canva-and-Graphic-Design-Basics.pptx
Introduction-to-Canva-and-Graphic-Design-Basics.pptxIntroduction-to-Canva-and-Graphic-Design-Basics.pptx
Introduction-to-Canva-and-Graphic-Design-Basics.pptx
 

CSS Selector