Web Development & Design Foundations with H T M L 5

Slides:



Advertisements
Similar presentations
Chapter 6 More CSS Basics Key Concepts Copyright © 2013 Terry Ann Morris, Ed.D 1.
Advertisements

Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 6 Key Concepts 1 Copyright © Terry Felke-Morris.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 6 Key Concepts 1 Copyright © Terry Felke-Morris.
Web Development & Design Foundations with XHTML Chapter 4 Key Concepts.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 4 Key Concepts 1 Copyright © Terry Felke-Morris.
CSS normally control the html elements. Three Ways to Insert CSS There are three ways of inserting a style sheet: External style sheet Internal style.
Week 9 Using the Box Properties. 9-2 The CSS Visual Formatting Model Describes how the element content boxes should be displayed by the browser –Based.
Web Development & Design Foundations with XHTML Chapter 6 Key Concepts.
Web Development & Design Foundations with XHTML Chapter 4 Key Concepts.
CSS Border.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 7 TH EDITION Chapter 6 Key Concepts 1 Copyright © Terry Felke-Morris.
Copyright © Terry Felke-Morris WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5 Chapter 6 Key Concepts 1 Copyright © Terry Felke-Morris.
Web Development & Design Foundations with HTML5 7th Edition
CSS.
Laying out Elements with CSS
The Box Model in CSS Web Design – Sec 4-8
The Box Model in CSS Web Design – Sec 4-8
CSS Layouts: Grouping Elements
Cascading Style Sheets (Layout)
The Box Model in CSS Web Design – Sec 4-8
Web Development & Design Foundations with HTML5
Chapter 6 More CSS Basics Key Concepts
Basics of Web Design Chapter 7 Page Layout Basics Key Concepts
Web Development & Design Foundations with HTML5 7th Edition
Cascading Style Sheets
Web Development & Design Foundations with HTML5 8th Edition
Basics of Web Design Chapter 6 More CSS Basics Key Concepts
CSS Borders and Margins.
HTML5 Level I Session III
HTML5 Level I Session III
Box model, spacing, borders, backgrounds
Basics of Web Design Chapter 6 More CSS Basics Key Concepts
Trigonometry Second Edition Chapter 5
Web Development & Design Foundations with H T M L 5
Web Development & Design Foundations with H T M L 5
Precalculus Essentials
Precalculus Essentials
Float Property Elements that seem to “float" on the right or left side of either the browser window or another element are often configured using.
Web Development & Design Foundations with H T M L 5
Precalculus Essentials
Precalculus Essentials
Precalculus Essentials
Precalculus Essentials
Precalculus Essentials
Web Development & Design Foundations with H T M L 5
Web Development & Design Foundations with H T M L 5
Web Development & Design Foundations with H T M L 5
Precalculus Essentials
Basics of Web Design Chapter 6 More CSS Basics Key Concepts
Web Development & Design Foundations with H T M L 5
Precalculus Essentials
Web Development & Design Foundations with H T M L 5
Web Development & Design Foundations with H T M L 5
Web Development & Design Foundations with H T M L 5
Web Development & Design Foundations with H T M L 5
Precalculus Essentials
Precalculus Essentials
Web Development & Design Foundations with HTML5
Web Development & Design Foundations with H T M L 5
Web Development & Design Foundations with H T M L 5
Web Development & Design Foundations with H T M L 5
Web Development & Design Foundations with H T M L 5
Thinking Mathematically
Introduction to Calculus
Precalculus Essentials
Exercise 24 – Software Skills
Web Development & Design Foundations with HTML5
Precalculus Essentials
ITI 133: HTML5 Desktop and Mobile Level I
Positioning Boxes Using CSS
Presentation transcript:

Web Development & Design Foundations with H T M L 5 Ninth Edition Chapter 4 Visual Elements and Graphics If this PowerPoint presentation contains mathematical equations, you may need to check that your computer has the following installed: 1) MathType Plugin 2) Math Player (free versions available) 3) NVDA Reader (free versions available) Slides in this presentation contain hyperlinks. JAWS users should be able to get a list of links by using INSERT+F7 Copyright © 2019, 2017, 2015 Pearson Education, Inc. All Rights Reserved

Horizontal Rule Element Configures a horizontal line <hr>

HANDS-ON PRACTICE 4.1 (page 136) chapter4/4.1/hr.html

CSS border Property Configures a border on the top, right, bottom, and left sides of an element Consists of border-width border-style border-color h2 { border: 2px solid #ff0000 }

CSS Borders: Block / Inline Elements Block display element Default width of element content extends to browser margin (or specified width) Inline display element Border closely outlines the element content h2 { border: 2px solid #ff0000; } a { border: 2px solid #ff0000; }

Border Display Can Vary by Browser Firefox:

Configuring Specific Sides of a Border Use CSS to configure a line on one or more sides of an element border-bottom border-left border-right border-top h2 { border-bottom: 2px solid #ff0000 }

C S S Padding Property Configures empty space between the content of the H T M L element and the border Set to 0px by default No padding property configured:

Configure Padding on Specific Sides of an Element Use C S S to configure padding on one or more sides of an element padding-bottom padding-left padding-right padding-top

C S S Padding Property Shorthand: Two Values Two numeric values or percentages first value configures top and bottom padding the second value configures left and right padding

C S S Padding Property Shorthand: Four Values Four numeric values or percentages Configure top, right, bottom, and left padding

Hands-On Practice 4.2 (pages 140-1)

HANDS-ON PRACTICE 4.2 (Page 140-1) chapter4/4.2/border.html