SlideShare a Scribd company logo
1 of 23
Download to read offline
Position Property
CSS Rules of the Road
WEB CODING | CSS PROPERTIES
In CSS …

• Understand and the position property and how to use it 

• Practice relative, fixed and absolute positioning

• Understand when to use non-static positioning
WEB CODING | CSS PROPERTIES
Learning Objective
2
In today’s Lesson:

• Introduce the position property 

• Demonstrate each relative, fixed and absolute positioning

• Practice exercises and review solutions

• Check-in

• Resources to continue learning
WEB CODING | CSS PROPERTIES
Lesson
3
What is the position property?
In CSS …

• The Position Property controls the rules of layout 

• All the layout rules for block and inline elements that we’ve
learned so far are part of static positioning (default)

• CSS Rule … selector { position: static; } is default
WEB CODING | CSS PROPERTIES
4
We’ve learned to change inline elements to block or inline-block using
the display property. 

With the position property, we can change the rules of layout and have
more control over elements:

• relative | move elements relative to where they are 

• fixed | fix elements position on the page (doesn’t scroll) 

• absolute | set an absolute position (scrolls with the page)
WEB CODING | CSS PROPERTIES
Context
5
p {
margin-bottom: 10px;
}
Selector: “Select all paragraph tags on the page”
property: value; set the bottom margin to 10 pixels
We’ve already been using the position property
WEB CODING | CSS PROPERTIES
6
p {
position: static; /* default */
margin-bottom: 10px;
}
Assumed (default)
We’ve already been using the position property
WEB CODING | CSS PROPERTIES
7
Dive in …
WEB CODING | CSS PROPERTIES
8
1. Set position property to:

relative, fixed, -or- absolute
2. Set a vertical and horizontal property:

vertical: top -or- bottom

horizontal: left -or- right
2 steps
WEB CODING | CSS PROPERTIES
9
w3schools: https://w3schools.com/cssref/pr_class_position.asp
Reference
WEB CODING | CSS PROPERTIES
10
p {
position: relative;
top: 0;
left: 0;
}
Set the positioning rules to relative
Set how much you want to move the element vertically and horizontally
Syntax
WEB CODING | CSS PROPERTIES
11
p {
position: fixed;
bottom: 50px;
right: 0;
}
Set the positioning rules to fixed
Set where you want to the element vertically and horizontally
Syntax (continued)
WEB CODING | CSS PROPERTIES
12
Move elements relative to where they naturally are, eg, relative
to their static position:

• relative | move elements relative to where they are 

p { 

position: relative;

top: 30px;

left: 25px;

}
position: relative;
WEB CODING | CSS PROPERTIES
13
Demo: Relative
WEB CODING | CSS PROPERTIES
14
Demo: bit.ly/ep-position-property
Fix elements relative to the viewport:

• fixed | move elements relative to the viewport 

p { 

position: fixed;

top: 30px;

left: 25px;

}
position: fixed;
WEB CODING | CSS PROPERTIES
15
Demo: Fixed
WEB CODING | CSS PROPERTIES
16
Demo: bit.ly/ep-position-property
Position elements relative to the first NON-STATIC ancestor:

• absolute | position elements relative to 1st non-static

ancestor 

.ancestor {

position: relative; /* So we don’t move the ancestor */

top: 0;

left: 0;

}

p { 

position: absolute;

top: 30px;

left: 25px;

}
position: absolute;
WEB CODING | CSS PROPERTIES
17
Demo: bit.ly/ep-position-property
Demo: Absolute
WEB CODING | CSS PROPERTIES
18
Solution
Solution: bit.ly/ep-position-property-solution

NOTE: FORK First!
WEB CODING | CSS PROPERTIES
19
How did it go?
WEB CODING | CSS PROPERTIES
20
Solution: bit.ly/ep-position-property-solution
WEB CODING | CSS PROPERTIES
Continue Practicing
w3schools: https://w3schools.com/cssref/pr_class_position.asp
21
WEB CODING | CSS PROPERTIES
Resources
22
Slides: bit.ly/ep-position-slides
Slides
WEB CODING | CSS PROPERTIES
23

More Related Content

Similar to Emerson Prep: Position Property

Cascading Style Sheets CSS
Cascading Style Sheets CSS Cascading Style Sheets CSS
Cascading Style Sheets CSS Asif Shahzad
 
Web Programming Basic topic.pptx
Web Programming Basic topic.pptxWeb Programming Basic topic.pptx
Web Programming Basic topic.pptxShouravPodder3
 
Chapter05-Presentation.pptx
Chapter05-Presentation.pptxChapter05-Presentation.pptx
Chapter05-Presentation.pptxssuserf3db48
 
Advanced CSS.pptx
Advanced CSS.pptxAdvanced CSS.pptx
Advanced CSS.pptxDiyonaVas
 
Xamarin Forms - Noob to master - Week 1
Xamarin Forms - Noob to master - Week 1 Xamarin Forms - Noob to master - Week 1
Xamarin Forms - Noob to master - Week 1 Charlin Agramonte
 
Web Design Course: CSS lecture 5
Web Design Course: CSS  lecture 5Web Design Course: CSS  lecture 5
Web Design Course: CSS lecture 5Gheyath M. Othman
 
Css position property
Css position propertyCss position property
Css position propertyAnujRana43
 
Oooh shiny
Oooh shinyOooh shiny
Oooh shinywcto2017
 
CSS_Day_Three (W3schools)
CSS_Day_Three (W3schools)CSS_Day_Three (W3schools)
CSS_Day_Three (W3schools)Rafi Haidari
 
Designing Windows apps with Xaml
Designing Windows apps with XamlDesigning Windows apps with Xaml
Designing Windows apps with XamlJiri Danihelka
 
10 CSS Tricks and Tips to Create Astounding Websites
10 CSS Tricks and Tips to Create Astounding Websites10 CSS Tricks and Tips to Create Astounding Websites
10 CSS Tricks and Tips to Create Astounding WebsitesSyntactics Inc.
 
CSS Position and it’s values
CSS Position and it’s valuesCSS Position and it’s values
CSS Position and it’s valuesGunjan Tulsiani
 
Designing for the web - 101
Designing for the web - 101Designing for the web - 101
Designing for the web - 101Ashraf Hamdy
 

Similar to Emerson Prep: Position Property (20)

CSS_Dibbo
CSS_DibboCSS_Dibbo
CSS_Dibbo
 
Cascading Style Sheets CSS
Cascading Style Sheets CSS Cascading Style Sheets CSS
Cascading Style Sheets CSS
 
Page layout with css
Page layout with cssPage layout with css
Page layout with css
 
Chapter6
Chapter6Chapter6
Chapter6
 
Web Programming Basic topic.pptx
Web Programming Basic topic.pptxWeb Programming Basic topic.pptx
Web Programming Basic topic.pptx
 
Chapter05-Presentation.pptx
Chapter05-Presentation.pptxChapter05-Presentation.pptx
Chapter05-Presentation.pptx
 
Advanced CSS.pptx
Advanced CSS.pptxAdvanced CSS.pptx
Advanced CSS.pptx
 
Css position
Css positionCss position
Css position
 
Xamarin Forms - Noob to master - Week 1
Xamarin Forms - Noob to master - Week 1 Xamarin Forms - Noob to master - Week 1
Xamarin Forms - Noob to master - Week 1
 
Web Design Course: CSS lecture 5
Web Design Course: CSS  lecture 5Web Design Course: CSS  lecture 5
Web Design Course: CSS lecture 5
 
Css position property
Css position propertyCss position property
Css position property
 
MTA css layouts
MTA css layoutsMTA css layouts
MTA css layouts
 
Oooh shiny
Oooh shinyOooh shiny
Oooh shiny
 
Lec 2
Lec 2Lec 2
Lec 2
 
CSS_Day_Three (W3schools)
CSS_Day_Three (W3schools)CSS_Day_Three (W3schools)
CSS_Day_Three (W3schools)
 
Designing Windows apps with Xaml
Designing Windows apps with XamlDesigning Windows apps with Xaml
Designing Windows apps with Xaml
 
10 CSS Tricks and Tips to Create Astounding Websites
10 CSS Tricks and Tips to Create Astounding Websites10 CSS Tricks and Tips to Create Astounding Websites
10 CSS Tricks and Tips to Create Astounding Websites
 
CSS Position and it’s values
CSS Position and it’s valuesCSS Position and it’s values
CSS Position and it’s values
 
Designing for the web - 101
Designing for the web - 101Designing for the web - 101
Designing for the web - 101
 
Parallax effect in css by Khubaib
Parallax effect in css by KhubaibParallax effect in css by Khubaib
Parallax effect in css by Khubaib
 

Recently uploaded

%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrandmasabamasaba
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisamasabamasaba
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension AidPhilip Schwarz
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastPapp Krisztián
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park masabamasaba
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...Health
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrainmasabamasaba
 
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...WSO2
 
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...WSO2
 
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...WSO2
 
WSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisamasabamasaba
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...Shane Coughlan
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2
 
WSO2CON 2024 - How to Run a Security Program
WSO2CON 2024 - How to Run a Security ProgramWSO2CON 2024 - How to Run a Security Program
WSO2CON 2024 - How to Run a Security ProgramWSO2
 
tonesoftg
tonesoftgtonesoftg
tonesoftglanshi9
 
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...Bert Jan Schrijver
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplatePresentation.STUDIO
 
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...Jittipong Loespradit
 

Recently uploaded (20)

%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
Architecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the pastArchitecture decision records - How not to get lost in the past
Architecture decision records - How not to get lost in the past
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
 
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
+971565801893>>SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHAB...
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
 
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
WSO2CON 2024 - API Management Usage at La Poste and Its Impact on Business an...
 
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
WSO2CON 2024 - Building the API First Enterprise – Running an API Program, fr...
 
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...
WSO2CON 2024 - Navigating API Complexity: REST, GraphQL, gRPC, Websocket, Web...
 
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
 
WSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go Platformless
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
 
WSO2CON 2024 - How to Run a Security Program
WSO2CON 2024 - How to Run a Security ProgramWSO2CON 2024 - How to Run a Security Program
WSO2CON 2024 - How to Run a Security Program
 
tonesoftg
tonesoftgtonesoftg
tonesoftg
 
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
 

Emerson Prep: Position Property

  • 1. Position Property CSS Rules of the Road WEB CODING | CSS PROPERTIES
  • 2. In CSS … • Understand and the position property and how to use it • Practice relative, fixed and absolute positioning • Understand when to use non-static positioning WEB CODING | CSS PROPERTIES Learning Objective 2
  • 3. In today’s Lesson: • Introduce the position property • Demonstrate each relative, fixed and absolute positioning • Practice exercises and review solutions • Check-in • Resources to continue learning WEB CODING | CSS PROPERTIES Lesson 3
  • 4. What is the position property? In CSS … • The Position Property controls the rules of layout • All the layout rules for block and inline elements that we’ve learned so far are part of static positioning (default) • CSS Rule … selector { position: static; } is default WEB CODING | CSS PROPERTIES 4
  • 5. We’ve learned to change inline elements to block or inline-block using the display property. With the position property, we can change the rules of layout and have more control over elements: • relative | move elements relative to where they are • fixed | fix elements position on the page (doesn’t scroll) • absolute | set an absolute position (scrolls with the page) WEB CODING | CSS PROPERTIES Context 5
  • 6. p { margin-bottom: 10px; } Selector: “Select all paragraph tags on the page” property: value; set the bottom margin to 10 pixels We’ve already been using the position property WEB CODING | CSS PROPERTIES 6
  • 7. p { position: static; /* default */ margin-bottom: 10px; } Assumed (default) We’ve already been using the position property WEB CODING | CSS PROPERTIES 7
  • 8. Dive in … WEB CODING | CSS PROPERTIES 8
  • 9. 1. Set position property to:
 relative, fixed, -or- absolute 2. Set a vertical and horizontal property:
 vertical: top -or- bottom
 horizontal: left -or- right 2 steps WEB CODING | CSS PROPERTIES 9
  • 11. p { position: relative; top: 0; left: 0; } Set the positioning rules to relative Set how much you want to move the element vertically and horizontally Syntax WEB CODING | CSS PROPERTIES 11
  • 12. p { position: fixed; bottom: 50px; right: 0; } Set the positioning rules to fixed Set where you want to the element vertically and horizontally Syntax (continued) WEB CODING | CSS PROPERTIES 12
  • 13. Move elements relative to where they naturally are, eg, relative to their static position: • relative | move elements relative to where they are p { position: relative; top: 30px; left: 25px; } position: relative; WEB CODING | CSS PROPERTIES 13
  • 14. Demo: Relative WEB CODING | CSS PROPERTIES 14 Demo: bit.ly/ep-position-property
  • 15. Fix elements relative to the viewport: • fixed | move elements relative to the viewport p { position: fixed; top: 30px; left: 25px; } position: fixed; WEB CODING | CSS PROPERTIES 15
  • 16. Demo: Fixed WEB CODING | CSS PROPERTIES 16 Demo: bit.ly/ep-position-property
  • 17. Position elements relative to the first NON-STATIC ancestor: • absolute | position elements relative to 1st non-static
 ancestor .ancestor { position: relative; /* So we don’t move the ancestor */ top: 0; left: 0; } p { position: absolute; top: 30px; left: 25px; } position: absolute; WEB CODING | CSS PROPERTIES 17
  • 20. How did it go? WEB CODING | CSS PROPERTIES 20 Solution: bit.ly/ep-position-property-solution
  • 21. WEB CODING | CSS PROPERTIES Continue Practicing w3schools: https://w3schools.com/cssref/pr_class_position.asp 21
  • 22. WEB CODING | CSS PROPERTIES Resources 22