SlideShare a Scribd company logo
1 of 14
CSS – Cascading Style Sheet
CSS MARGINS
Call US: +91-9915337448 Email Us: info@webtechlearning.com
CSS Margin Properties
• The CSS margin properties are used to generate space around
elements.
• The margin properties set the size of the white space
OUTSIDE the border.
Call US: +91-9915337448 Email Us: info@webtechlearning.com
CSS Margins
• The CSS margin properties set the size of the white space
OUTSIDE the border.
• The margins are completely transparent - and cannot have a
background color!
• With CSS, you have full control over the margins. There are
CSS properties for setting the margin for each side of an
element (top, right, bottom, and left).
Call US: +91-9915337448 Email Us: info@webtechlearning.com
Margin - Individual Sides
CSS has properties for specifying the margin for each side of an
element:
• margin-top
• margin-right
• margin-bottom
• margin-left
Call US: +91-9915337448 Email Us: info@webtechlearning.com
Margin - Individual Sides
• All the margin properties can have the following values:
• auto - the browser calculates the margin.
• length - specifies a margin in px, pt, cm, etc.
• % - specifies a margin in % of the width of the containing
element.
• inherit - specifies that the margin should be inherited from
the parent element.
Call US: +91-9915337448 Email Us: info@webtechlearning.com
Margin - Individual Sides
• It is also possible to use negative values for margins; to
overlap content.
• The following example sets different margins for all four sides
of a <p> element:
Call US: +91-9915337448 Email Us: info@webtechlearning.com
p {
margin-top: 40px;
margin-bottom: 30px;
margin-right: 15px;
margin-left: 20px;
}
Margin - Shorthand Property
• To shorten the code, it is possible to specify all the margin
properties in one property.
• The margin property is a shorthand property for the following
individual margin properties:
• margin-top
• margin-right
• margin-bottom
• margin-left
Call US: +91-9915337448 Email Us: info@webtechlearning.com
Margin - Shorthand Property
• So, here is how it works:
Call US: +91-9915337448 Email Us: info@webtechlearning.com
p {
margin: 100px 150px 100px 80px;
}
Margin - Shorthand Property
• If the margin property has four values:
• margin: 20px 20px 55px 200px;
– top margin is 20px
– right margin is 20px
– bottom margin is 55px
– left margin is 200px
Call US: +91-9915337448 Email Us: info@webtechlearning.com
Margin - Shorthand Property
• If the margin property has three values:
• margin: 27px 10px 35px;
– top margin is 27px
– right and left margins are 10px
– bottom margin is 35px
Call US: +91-9915337448 Email Us: info@webtechlearning.com
Margin - Shorthand Property
• If the margin property has two values:
• margin: 45px 70px;
– top and bottom margins are 45px
– right and left margins are 70px
Call US: +91-9915337448 Email Us: info@webtechlearning.com
Margin - Shorthand Property
• If the margin property has one value:
• margin: 25px;
– all four margins are 25px
Call US: +91-9915337448 Email Us: info@webtechlearning.com
Use of The auto Value
• You can set the margin property to auto to horizontally center
the element within its container.
• The element will then take up the specified width, and the
remaining space will be split equally between the left and
right margins:
Call US: +91-9915337448 Email Us: info@webtechlearning.com
div {
width: 100px;
margin: auto;
border: 3px solid #f00;
}
Css margins

More Related Content

What's hot

5.1 css box model
5.1 css box model5.1 css box model
5.1 css box model
Bulldogs83
 

What's hot (20)

5.1 css box model
5.1 css box model5.1 css box model
5.1 css box model
 
CSS Basics
CSS BasicsCSS Basics
CSS Basics
 
CSS
CSSCSS
CSS
 
Css position
Css positionCss position
Css position
 
Css floats
Css floatsCss floats
Css floats
 
Beginners css tutorial for web designers
Beginners css tutorial for web designersBeginners css tutorial for web designers
Beginners css tutorial for web designers
 
CSS Grid
CSS GridCSS Grid
CSS Grid
 
Complete Lecture on Css presentation
Complete Lecture on Css presentation Complete Lecture on Css presentation
Complete Lecture on Css presentation
 
javaScript.ppt
javaScript.pptjavaScript.ppt
javaScript.ppt
 
Css Display Property
Css Display PropertyCss Display Property
Css Display Property
 
cascading style sheet ppt
cascading style sheet pptcascading style sheet ppt
cascading style sheet ppt
 
Html & CSS
Html & CSSHtml & CSS
Html & CSS
 
CSS
CSSCSS
CSS
 
Introduction to JavaScript
Introduction to JavaScriptIntroduction to JavaScript
Introduction to JavaScript
 
html-table
html-tablehtml-table
html-table
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
 
Box Model
Box ModelBox Model
Box Model
 
World of CSS Grid
World of CSS GridWorld of CSS Grid
World of CSS Grid
 
CSS Positioning Elements.pdf
CSS Positioning Elements.pdfCSS Positioning Elements.pdf
CSS Positioning Elements.pdf
 
Introduction to Cascading Style Sheets (CSS)
Introduction to Cascading Style Sheets (CSS)Introduction to Cascading Style Sheets (CSS)
Introduction to Cascading Style Sheets (CSS)
 

Viewers also liked (7)

Variables 2
Variables 2Variables 2
Variables 2
 
Html web designing enhancing text
Html web designing enhancing textHtml web designing enhancing text
Html web designing enhancing text
 
Java script introduction
Java script introductionJava script introduction
Java script introduction
 
Css In Iterations
Css In IterationsCss In Iterations
Css In Iterations
 
Css margin and padding property
Css margin and padding propertyCss margin and padding property
Css margin and padding property
 
Lab#7 CSS Box Model
Lab#7 CSS Box ModelLab#7 CSS Box Model
Lab#7 CSS Box Model
 
CSS_Day_Three (W3schools)
CSS_Day_Three (W3schools)CSS_Day_Three (W3schools)
CSS_Day_Three (W3schools)
 

Similar to Css margins

CSS Box Model and Dimensions
CSS Box Model and DimensionsCSS Box Model and Dimensions
CSS Box Model and Dimensions
Gerson Abesamis
 
CSS3 TTA (Transform Transition Animation)
CSS3 TTA (Transform Transition Animation)CSS3 TTA (Transform Transition Animation)
CSS3 TTA (Transform Transition Animation)
창석 한
 

Similar to Css margins (20)

Margin
MarginMargin
Margin
 
Ppt ch06
Ppt ch06Ppt ch06
Ppt ch06
 
Ppt ch06
Ppt ch06Ppt ch06
Ppt ch06
 
CSS tutorial chapter 2
CSS tutorial chapter 2CSS tutorial chapter 2
CSS tutorial chapter 2
 
Css presentation lecture 4
Css presentation lecture 4Css presentation lecture 4
Css presentation lecture 4
 
Layout with CSS
Layout with CSSLayout with CSS
Layout with CSS
 
Dimensions of elements.pdf
Dimensions of elements.pdfDimensions of elements.pdf
Dimensions of elements.pdf
 
CSS Architecture
CSS ArchitectureCSS Architecture
CSS Architecture
 
CSS and CSS3
CSS and CSS3CSS and CSS3
CSS and CSS3
 
Web Engineering - Basic CSS Properties
Web Engineering - Basic CSS PropertiesWeb Engineering - Basic CSS Properties
Web Engineering - Basic CSS Properties
 
Css box model
Css  box modelCss  box model
Css box model
 
Web Development - Lecture 6
Web Development - Lecture 6Web Development - Lecture 6
Web Development - Lecture 6
 
Web Design Course: CSS lecture 4
Web Design Course: CSS  lecture 4Web Design Course: CSS  lecture 4
Web Design Course: CSS lecture 4
 
MTA managing the graphical interface by using css
MTA managing the graphical interface by using cssMTA managing the graphical interface by using css
MTA managing the graphical interface by using css
 
CSS Box Model and Dimensions
CSS Box Model and DimensionsCSS Box Model and Dimensions
CSS Box Model and Dimensions
 
Css methods architecture
Css methods architectureCss methods architecture
Css methods architecture
 
Unit-3-CSS-BWT.pptx
Unit-3-CSS-BWT.pptxUnit-3-CSS-BWT.pptx
Unit-3-CSS-BWT.pptx
 
Web Layout
Web LayoutWeb Layout
Web Layout
 
CSS3 TTA (Transform Transition Animation)
CSS3 TTA (Transform Transition Animation)CSS3 TTA (Transform Transition Animation)
CSS3 TTA (Transform Transition Animation)
 
CSS Boc model
CSS Boc model CSS Boc model
CSS Boc model
 

More from Webtech Learning

More from Webtech Learning (20)

Benefits of Digital Marketing
Benefits of Digital MarketingBenefits of Digital Marketing
Benefits of Digital Marketing
 
Digital Marketing Benefits
Digital Marketing  BenefitsDigital Marketing  Benefits
Digital Marketing Benefits
 
Future Scope of Digital Marketing in India
Future Scope of Digital Marketing in IndiaFuture Scope of Digital Marketing in India
Future Scope of Digital Marketing in India
 
Css types internal, external and inline (1)
Css types internal, external and inline (1)Css types internal, external and inline (1)
Css types internal, external and inline (1)
 
Bootstrap webtech presentation - new
Bootstrap   webtech presentation - newBootstrap   webtech presentation - new
Bootstrap webtech presentation - new
 
Css presentation
Css presentationCss presentation
Css presentation
 
Client side &amp; Server side Scripting
Client side &amp; Server side Scripting Client side &amp; Server side Scripting
Client side &amp; Server side Scripting
 
Software testing & Quality Assurance
Software testing & Quality Assurance Software testing & Quality Assurance
Software testing & Quality Assurance
 
Shadows Effects in CSS
Shadows Effects in CSSShadows Effects in CSS
Shadows Effects in CSS
 
Bs Typography
Bs TypographyBs Typography
Bs Typography
 
Bootstrap grids
Bootstrap gridsBootstrap grids
Bootstrap grids
 
Html formatting
Html formattingHtml formatting
Html formatting
 
Css box-sizing
Css box-sizingCss box-sizing
Css box-sizing
 
Html media
Html mediaHtml media
Html media
 
Css pseudo-classes
Css pseudo-classesCss pseudo-classes
Css pseudo-classes
 
Wordpress installation
Wordpress installationWordpress installation
Wordpress installation
 
Html tags or elements
Html tags or elementsHtml tags or elements
Html tags or elements
 
HTML Block and Inline Elements
HTML Block and Inline ElementsHTML Block and Inline Elements
HTML Block and Inline Elements
 
Hadoop Training in Panchkula
Hadoop Training in PanchkulaHadoop Training in Panchkula
Hadoop Training in Panchkula
 
Google Adwords Certification in Chandigarh
Google Adwords Certification in ChandigarhGoogle Adwords Certification in Chandigarh
Google Adwords Certification in Chandigarh
 

Recently uploaded

Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman MuscatAbortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion pills in Kuwait Cytotec pills in Kuwait
 
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
amitlee9823
 
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
amitlee9823
 
infant assessment fdbbdbdddinal ppt.pptx
infant assessment fdbbdbdddinal ppt.pptxinfant assessment fdbbdbdddinal ppt.pptx
infant assessment fdbbdbdddinal ppt.pptx
suhanimunjal27
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
dollysharma2066
 
Editorial design Magazine design project.pdf
Editorial design Magazine design project.pdfEditorial design Magazine design project.pdf
Editorial design Magazine design project.pdf
tbatkhuu1
 
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
amitlee9823
 
Peaches App development presentation deck
Peaches App development presentation deckPeaches App development presentation deck
Peaches App development presentation deck
tbatkhuu1
 
Whitefield Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Ba...
Whitefield Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Ba...Whitefield Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Ba...
Whitefield Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Ba...
amitlee9823
 
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Service
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts ServiceVVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Service
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Service
aroranaina404
 

Recently uploaded (20)

Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman MuscatAbortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
Abortion Pills in Oman (+918133066128) Cytotec clinic buy Oman Muscat
 
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
RT Nagar Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bang...
 
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
 
Case Study of Hotel Taj Vivanta, Pune
Case Study of Hotel Taj Vivanta, PuneCase Study of Hotel Taj Vivanta, Pune
Case Study of Hotel Taj Vivanta, Pune
 
infant assessment fdbbdbdddinal ppt.pptx
infant assessment fdbbdbdddinal ppt.pptxinfant assessment fdbbdbdddinal ppt.pptx
infant assessment fdbbdbdddinal ppt.pptx
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
call girls in Vasundhra (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
call girls in Vasundhra (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...call girls in Vasundhra (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
call girls in Vasundhra (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝...
 
Editorial design Magazine design project.pdf
Editorial design Magazine design project.pdfEditorial design Magazine design project.pdf
Editorial design Magazine design project.pdf
 
HiFi Call Girl Service Delhi Phone ☞ 9899900591 ☜ Escorts Service at along wi...
HiFi Call Girl Service Delhi Phone ☞ 9899900591 ☜ Escorts Service at along wi...HiFi Call Girl Service Delhi Phone ☞ 9899900591 ☜ Escorts Service at along wi...
HiFi Call Girl Service Delhi Phone ☞ 9899900591 ☜ Escorts Service at along wi...
 
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
 
Peaches App development presentation deck
Peaches App development presentation deckPeaches App development presentation deck
Peaches App development presentation deck
 
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Th...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Th...Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Th...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Th...
 
Jordan_Amanda_DMBS202404_PB1_2024-04.pdf
Jordan_Amanda_DMBS202404_PB1_2024-04.pdfJordan_Amanda_DMBS202404_PB1_2024-04.pdf
Jordan_Amanda_DMBS202404_PB1_2024-04.pdf
 
Tapestry Clothing Brands: Collapsing the Funnel
Tapestry Clothing Brands: Collapsing the FunnelTapestry Clothing Brands: Collapsing the Funnel
Tapestry Clothing Brands: Collapsing the Funnel
 
Whitefield Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Ba...
Whitefield Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Ba...Whitefield Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Ba...
Whitefield Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Ba...
 
UI:UX Design and Empowerment Strategies for Underprivileged Transgender Indiv...
UI:UX Design and Empowerment Strategies for Underprivileged Transgender Indiv...UI:UX Design and Empowerment Strategies for Underprivileged Transgender Indiv...
UI:UX Design and Empowerment Strategies for Underprivileged Transgender Indiv...
 
SD_The MATATAG Curriculum Training Design.pptx
SD_The MATATAG Curriculum Training Design.pptxSD_The MATATAG Curriculum Training Design.pptx
SD_The MATATAG Curriculum Training Design.pptx
 
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Service
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts ServiceVVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Service
VVIP CALL GIRLS Lucknow 💓 Lucknow < Renuka Sharma > 7877925207 Escorts Service
 
Chapter 19_DDA_TOD Policy_First Draft 2012.pdf
Chapter 19_DDA_TOD Policy_First Draft 2012.pdfChapter 19_DDA_TOD Policy_First Draft 2012.pdf
Chapter 19_DDA_TOD Policy_First Draft 2012.pdf
 
Hire 💕 8617697112 Meerut Call Girls Service Call Girls Agency
Hire 💕 8617697112 Meerut Call Girls Service Call Girls AgencyHire 💕 8617697112 Meerut Call Girls Service Call Girls Agency
Hire 💕 8617697112 Meerut Call Girls Service Call Girls Agency
 

Css margins

  • 1. CSS – Cascading Style Sheet CSS MARGINS Call US: +91-9915337448 Email Us: info@webtechlearning.com
  • 2. CSS Margin Properties • The CSS margin properties are used to generate space around elements. • The margin properties set the size of the white space OUTSIDE the border. Call US: +91-9915337448 Email Us: info@webtechlearning.com
  • 3. CSS Margins • The CSS margin properties set the size of the white space OUTSIDE the border. • The margins are completely transparent - and cannot have a background color! • With CSS, you have full control over the margins. There are CSS properties for setting the margin for each side of an element (top, right, bottom, and left). Call US: +91-9915337448 Email Us: info@webtechlearning.com
  • 4. Margin - Individual Sides CSS has properties for specifying the margin for each side of an element: • margin-top • margin-right • margin-bottom • margin-left Call US: +91-9915337448 Email Us: info@webtechlearning.com
  • 5. Margin - Individual Sides • All the margin properties can have the following values: • auto - the browser calculates the margin. • length - specifies a margin in px, pt, cm, etc. • % - specifies a margin in % of the width of the containing element. • inherit - specifies that the margin should be inherited from the parent element. Call US: +91-9915337448 Email Us: info@webtechlearning.com
  • 6. Margin - Individual Sides • It is also possible to use negative values for margins; to overlap content. • The following example sets different margins for all four sides of a <p> element: Call US: +91-9915337448 Email Us: info@webtechlearning.com p { margin-top: 40px; margin-bottom: 30px; margin-right: 15px; margin-left: 20px; }
  • 7. Margin - Shorthand Property • To shorten the code, it is possible to specify all the margin properties in one property. • The margin property is a shorthand property for the following individual margin properties: • margin-top • margin-right • margin-bottom • margin-left Call US: +91-9915337448 Email Us: info@webtechlearning.com
  • 8. Margin - Shorthand Property • So, here is how it works: Call US: +91-9915337448 Email Us: info@webtechlearning.com p { margin: 100px 150px 100px 80px; }
  • 9. Margin - Shorthand Property • If the margin property has four values: • margin: 20px 20px 55px 200px; – top margin is 20px – right margin is 20px – bottom margin is 55px – left margin is 200px Call US: +91-9915337448 Email Us: info@webtechlearning.com
  • 10. Margin - Shorthand Property • If the margin property has three values: • margin: 27px 10px 35px; – top margin is 27px – right and left margins are 10px – bottom margin is 35px Call US: +91-9915337448 Email Us: info@webtechlearning.com
  • 11. Margin - Shorthand Property • If the margin property has two values: • margin: 45px 70px; – top and bottom margins are 45px – right and left margins are 70px Call US: +91-9915337448 Email Us: info@webtechlearning.com
  • 12. Margin - Shorthand Property • If the margin property has one value: • margin: 25px; – all four margins are 25px Call US: +91-9915337448 Email Us: info@webtechlearning.com
  • 13. Use of The auto Value • You can set the margin property to auto to horizontally center the element within its container. • The element will then take up the specified width, and the remaining space will be split equally between the left and right margins: Call US: +91-9915337448 Email Us: info@webtechlearning.com div { width: 100px; margin: auto; border: 3px solid #f00; }