css layout cascading style sheets. lesson overview in this lesson, you will learn: css properties...

10
CSS Layout Cascading Style Sheets

Upload: janice-ball

Post on 18-Jan-2016

219 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: CSS Layout Cascading Style Sheets. Lesson Overview  In this lesson, you will learn:  CSS properties for margin  CSS properties for dimensions (width,

CSS LayoutCascadingStyle Sheets

Page 2: CSS Layout Cascading Style Sheets. Lesson Overview  In this lesson, you will learn:  CSS properties for margin  CSS properties for dimensions (width,

Lesson OverviewIn this lesson, you will learn:

CSS properties for margin CSS properties for dimensions (width,

height, centering)

Page 3: CSS Layout Cascading Style Sheets. Lesson Overview  In this lesson, you will learn:  CSS properties for margin  CSS properties for dimensions (width,

Margin PropertiesProperty Description Example Values

margin Margin for all 4 sides:- One value for all 4

sides- In clock-wise order:

Top Right Bottom Left

5px

2px 3px 3px 2px

margin-top, margin-right,margin-bottom,margin-left

Margin for one side of the box

10px

Page 4: CSS Layout Cascading Style Sheets. Lesson Overview  In this lesson, you will learn:  CSS properties for margin  CSS properties for dimensions (width,

Margin Examples Notice that margins are always transparent (they

don’t contain the elements background color, etc.)

Page 5: CSS Layout Cascading Style Sheets. Lesson Overview  In this lesson, you will learn:  CSS properties for margin  CSS properties for dimensions (width,

Exercise Open boxes.html and boxstyles.css Apply margins to the boxes so there are

empty spaces between them

Page 6: CSS Layout Cascading Style Sheets. Lesson Overview  In this lesson, you will learn:  CSS properties for margin  CSS properties for dimensions (width,

CSS properties for dimensions width / height

How wide or tall to make the element Block elements only px or %

Page 7: CSS Layout Cascading Style Sheets. Lesson Overview  In this lesson, you will learn:  CSS properties for margin  CSS properties for dimensions (width,

Centering a block element

Use auto margins Works best if width is set To center inline elements within a block

element, use text-align: center;

Page 8: CSS Layout Cascading Style Sheets. Lesson Overview  In this lesson, you will learn:  CSS properties for margin  CSS properties for dimensions (width,

Centering Example

Page 9: CSS Layout Cascading Style Sheets. Lesson Overview  In this lesson, you will learn:  CSS properties for margin  CSS properties for dimensions (width,

Exercise Open boxes.html and boxstyles.css Center BOX1 Center the text within BOX2, BOX3 and BOX4

Page 10: CSS Layout Cascading Style Sheets. Lesson Overview  In this lesson, you will learn:  CSS properties for margin  CSS properties for dimensions (width,

Exercise - Solution