CSS 1: Introduction. Chapter 3

Similar documents
CPET 499/ITC 250 Web Systems. Topics

PESIT Bangalore South Campus

The Benefits of CSS. Less work: Change look of the whole site with one edit

CSS.

Cascading Style Sheets Level 2

CSS: The Basics CISC 282 September 20, 2014

2. Write style rules for how you d like certain elements to look.

Chapter 3 Style Sheets: CSS

Chapter 3. PRINCESS NOURAH BINT ADULRAHMAN UNIVERSITY College of Computer and Information sciences

Cascading Style Sheets (CSS)

Index. alt, 38, 57 class, 86, 88, 101, 107 href, 24, 51, 57 id, 86 88, 98 overview, 37. src, 37, 57. backend, WordPress, 146, 148

CSS: Cascading Style Sheets

Block & Inline Elements

To link to an external stylesheet, the link element is placed within the head of the html page:

Web Design and Development Tutorial 03

Unveiling the Basics of CSS and how it relates to the DataFlex Web Framework

CSS Cascading Style Sheets

Session 3.1 Objectives Review the history and concepts of CSS Explore inline styles, embedded styles, and external style sheets Understand style

HTML & CSS. SWE 432, Fall 2017 Design and Implementation of Software for the Web

CSS Selectors. element selectors. .class selectors. #id selectors

CSC309 Programming on the Web week 3: css, rwd

Welcome Please sit on alternating rows. powered by lucid & no.dots.nl/student

Appendix D CSS Properties and Values

Web Design and Development ACS-1809

Zen Garden. CSS Zen Garden

INTRODUCTION TO CSS. Mohammad Jawad Kadhim

CSS Cascading Style Sheets

3.1 Introduction. 3.2 Levels of Style Sheets. - The CSS1 specification was developed in There are three levels of style sheets

- The CSS1 specification was developed in CSS2 was released in CSS2.1 reflects browser implementations

Introduction to WEB PROGRAMMING

Styles, Style Sheets, the Box Model and Liquid Layout

CSS - Cascading Style Sheets

ITNP43: HTML Lecture 4

Introduction to Multimedia. MMP100 Spring 2016 thiserichagan.com/mmp100

Study Guide 2 - HTML and CSS - Chap. 6,8,10,11,12 Name - Alexia Bernardo

INTRODUCTION TO HTML5! CSS Styles!

<style type="text/css"> <!-- body {font-family: Verdana, Arial, sans-serif} ***set font family for entire Web page***

HTML/XML. HTML Continued Introduction to CSS

<body bgcolor=" " fgcolor=" " link=" " vlink=" " alink=" "> These body attributes have now been deprecated, and should not be used in XHTML.

8/19/2018. Web Development & Design Foundations with HTML5. Learning Objectives (1 of 2) Learning Objectives (2 of 2)

CSS worksheet. JMC 105 Drake University

CSS مفاهیم ساختار و اصول استفاده و به کارگیری

ADDING CSS TO YOUR HTML DOCUMENT. A FEW CSS VALUES (colour, size and the box model)

CSS: formatting webpages

CSS3 Basics. From & CSS Visual Dictionary Learning Curve Books, LLC

Reading 2.2 Cascading Style Sheets

CMPT 165 INTRODUCTION TO THE INTERNET AND THE WORLD WIDE WEB

Session 4. Style Sheets (CSS) Reading & References. A reference containing tables of CSS properties

COMS 359: Interactive Media

Assignments (4) Assessment as per Schedule (2)

Controlling Appearance the Old Way

In the early days of the Web, designers just had the original 91 HTML tags to work with.

Review Question 1. Which tag is used to create a link to another page? 1. <p> 2. <li> 3. <a> 4. <em>

Make a Website. A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1

HTML + CSS. ScottyLabs WDW. Overview HTML Tags CSS Properties Resources

Unit 10 - Client Side Customisation of Web Pages. Week 5 Lesson 1 CSS - Selectors

ID1354 Internet Applications

HIERARCHICAL ORGANIZATION

CSS exercise - Part 1

8a. Cascading Style Sheet

CSCB20 Week 7. Introduction to Database and Web Application Programming. Anna Bretscher Winter 2017

Web Development & Design Foundations with HTML5

Three Ways to Use CSS:

HTML/CSS. HTML review and extra CSS review CSS Color

WEB DEVELOPMENT & DESIGN FOUNDATIONS WITH HTML5

CSS. Shan-Hung Wu CS, NTHU

Web Development & Design Foundations with HTML5

Introduction to Cascading Style Sheet (CSS)

Tutorial 3: Working with Cascading Style Sheets

The building block of a CSS stylesheet. A rule consists of a selector and a declaration block (one or more declarations).

COSC 2206 Internet Tools. CSS Cascading Style Sheets

3.1 Introduction. 3.2 Levels of Style Sheets. - HTML is primarily concerned with content, rather than style. - There are three levels of style sheets

Using Advanced Cascading Style Sheets

.hedgehog { background-image: url(backyard.jpg); color: #ffff99; height: 6in; width: 12in; } .tube {

Data Visualization (CIS/DSC 468)

ACSC 231 Internet Technologies

Text and Layout. Digital Multimedia, 2nd edition Nigel Chapman & Jenny Chapman Chapter 11. This presentation 2004, MacAvon Media Productions

ICT IGCSE Practical Revision Presentation Web Authoring

YouTube Break.

Cascading Style Sheet

- HTML is primarily concerned with content, rather than style. - However, tags have presentation properties, for which browsers have default values

INTRODUCTION TO CSS. Topics MODULE 5

- The CSS1 specification was developed in CSSs provide the means to control and change presentation of HTML documents

Cascading Style Sheet. Styles as Tag Attributes. Syntax. <h1>: what font type/size is used? STYLE = SELECTOR {RULES} Attributes such as bgcolor

Web Development & Design Foundations with HTML5, 8 th Edition Instructor Materials Chapter 3 Test Bank

CSS: Cascading Style Sheets

BIM222 Internet Programming

Introduction to Web Design CSS Reference

Introduction to Web Design CSS Reference

Lab Introduction to Cascading Style Sheets

APPLIED COMPUTING 1P01 Fluency with Technology

Cascading Style Sheets for XML

COMS 359: Interactive Media

Module 2 (VII): CSS [Part 4]

CHAPTER 4 CASCADING STYLE SHEETS BASICS KEY CONCEPTS

Let s start with the document tree

Web Programming and Design. MPT Junior Cycle Tutor: Tamara Demonstrators: Aaron, Marion, Hugh

Client-Side Web Technologies. CSS Part I

COMP519 Web Programming Lecture 6: Cascading Style Sheets: Part 2 Handouts

Chapter 1 Getting Started with HTML 5 1. Chapter 2 Introduction to New Elements in HTML 5 21

Transcription:

CSS 1: Introduction Chapter 3 Textbook to be published by Pearson Ed 2015 in early Pearson 2014 Fundamentals of Web http://www.funwebdev.com Development

What is CSS? You be styling soon CSS is a W3C standard for describing the presentation (or appearance) of HTML elements. With CSS, we can assign font properties, colors, sizes, borders, background images, even the position of elements.

What is CSS? You be styling soon CSS is a language in that it has its own syntax rules. CSS can be added directly to any HTML element (via the style attribute), within the <head> element, or, most commonly, in a separate text file that contains only CSS.

Benefits of CSS Why using CSS is a better way of describing presentation than HTML The degree of formatting control in CSS is significantly better than that provided in HTML. Web sites become significantly more maintainable because all formatting can be centralized into one, or a small handful, of CSS files. CSS-driven sites are more accessible. A site built using a centralized set of CSS files for all presentation will also be quicker to download because each individual HTML file will contain less markup. CSS can be used to adopt a page for different output mediums.

CSS Versions Let s just say there s more than 1 W3C published the CSS Level 1 Recommendation in 1996. A year later, the CSS Level 2 Recommendation (also more succinctly labeled simply as CSS2) was published. Even though work began over a decade ago, an updated version of the Level 2 Recommendation, CSS2.1, did not become an official W3C Recommendation until June 2011. And to complicate matters even more, all through the last decade (and to the present day as well), during the same time the CSS2.1 standard was being worked on, a different group at the W3C was working on a CSS3 draft.

Browser Adoption Insert obligatory snide comment about Internet Explorer 6 here While Microsoft s Internet Explorer was an early champion of CSS, its later versions (especially IE5, IE6, and IE7) for Windows had uneven support for certain parts of CSS2. In fact, all browsers have left certain parts of the CSS2 Recommendation unimplemented. CSS has a reputation for being a somewhat frustrating language. this reputation is well deserved!

CSS Syntax Rules, properties, values, declarations A CSS document consists of one or more style rules. A rule consists of a selector that identifies the HTML element or elements that will be affected, followed by a series of property and value pairs (each pair is also called a declaration). declaration selector { property: value; property2: value2; } rule syntax declaration block selector em { color: red; } p { } property value margin: 5px 0 10px 0; font-weight: bold; font-family: Arial, Helvetica, sans-serif; examples

Declaration Blocks The series of declarations is also called the declaration block. A declaration block can be together on a single line, or spread across multiple lines. The browser ignores white space Each declaration is terminated with a semicolon. declaration selector { property: value; property2: value2; } selector em { color: red; } declaration block rule syntax property value examples p { } margin: 5px 0 10px 0; font-weight: bold; font-family: Arial, Helvetica, sans-serif;

Selectors Which elements Every CSS rule begins with a selector. The selector identifies which element or elements in the HTML document will be affected by the declarations in the rule. Another way of thinking of selectors is that they are a pattern which is used by the browser to select the HTML elements that will receive the style. selector { property: value; property2: value2; } selector em { color: red; } p { } property value declaration declaration block declaration selector { property: value; property2: value2; } selector margin: 5px 0 10px 0; font-weight: bold; property font-family: Arial, Helvetica, sans-serif; em { color: red; } p { } value rule declaration block syntax examples margin: 5px 0 10px 0; font-weight: bold; font-family: Arial, Helvetica, sans-serif; rule

Properties Which style properties of the selected elements Each individual CSS declaration must contain a property. These property names are predefined by the CSS standard. The CSS2.1 Recommendation defines over a hundred different property names. declaration selector { property: value; property2: value2; } declaration block rule syntax selector em { color: red; } p { } property value margin: 5px 0 10px 0; font-weight: bold; font-family: Arial, Helvetica, sans-serif; examples

Values What style value for the properties Each CSS declaration also contains a value for a property. The unit of any given value is dependent upon the property. Some property values are from a predefined list of keywords. Others are values such as length measurements, percentages, numbers without units, color values, and URLs.

Section 3 of 7 LOCATION OF STYLES

Actually there are three Different types of style sheet Author-created style sheets (what we are learning in this presentation). User style sheets allow the individual user to tell the browser to display pages using that individual s own custom style sheet. This option is available in a browser usually in its accessibility options area. The browser style sheet defines the default styles the browser uses for each HTML element.

Style Locations Author Created CSS style rules can be located in three different locations CSS style rules can be located in three different locations. Inline Embedded External You can combine all 3!

Inline Styles Style rules placed within an HTML element via the style attribute An inline style only affects the element it is defined within and will override any other style definitions for the properties used in the inline style. Using inline styles is generally discouraged since they increase bandwidth and decrease maintainability. Inline styles can however be handy for quickly testing out a style change.

Embedded Style Sheet Style rules placed within the <style> element inside the <head> element While better than inline styles, using embedded styles is also by and large discouraged. Since each HTML document has its own <style> element, it is more difficult to consistently style multiple documents when using embedded styles.

External Style Sheet Style rules placed within a external text file with the.css extension This is by far the most common place to locate style rules because it provides the best maintainability. When you make a change to an external style sheet, all HTML documents that reference that style sheet will automatically use the updated version. The browser is able to cache the external style sheet which can improve the performance of the site

Section 4 of 7 SELECTORS

Selectors Things that make your life easier When defining CSS rules, you will need to first need to use a selector to tell the browser which elements will be affected. CSS selectors allow you to select individual elements multiple HTML elements, elements that belong together in some way, or elements that are positioned in specific ways in the document hierarchy. There are a number of different selector types.

Element Selectors Selects all instances of a given HTML element Uses the HTML element name. You can select all elements by using the universal element selector, which is the * (asterisk) character. declaration selector { property: value; property2: value2; } rule selector declaration block em { color: red; } property value p { } margin: 5px 0 10px 0; font-weight: bold; font-family: Arial, Helvetica, sans-serif;

Grouped Selectors Selecting multiple things You can select a group of elements by separating the different element names with commas. This is a sensible way to reduce the size and complexity of your CSS files, by combining multiple identical rules into a single rule.

Reset Grouped selectors are often used as a way to quickly reset or remove browser defaults. The goal of doing so is to reduce browser inconsistencies with things such as margins, line heights, and font sizes. These reset styles can be placed in their own css file (perhaps called reset.css) and linked to the page before any other external styles sheets.

Class Selectors Simultaneously target different HTML elements A class selector allows you to simultaneously target different HTML elements regardless of their position in the document tree. If a series of HTML element have been labeled with the same class attribute value, then you can target them for styling by using a class selector, which takes the form: period (.) followed by the class name.

Class Selectors <head> <title>share Your Travels </title> <style>.first { font-style: italic; color: brown; } </style> </head> <body> <h1 class="first">reviews</h1> <div> <p class="first">by Ricardo on <time>september 15, 2012</time></p> <p>easy on the HDR buddy.</p> </div> <hr/> <div> <p class="first">by Susan on <time>october 1, 2012</time></p> <p>i love Central Park.</p> </div> <hr/> </body>.first { font-style: italic; color: brown; }

Id Selectors Target a specific element by its id attribute An id selector allows you to target a specific element by its id attribute regardless of its type or position. If an HTML element has been labeled with an id attribute, then you can target it for styling by using an id selector, which takes the form: pound/hash (#) followed by the id name. Note: You should only be using an id once per page

Id Selectors <head lang="en"> <meta charset="utf-8"> <title>share Your Travels -- New York - Central Park</title> <style> #latestcomment { font-style: italic; color: brown; } </style> </head> <body> <h1>reviews</h1> <div id="latestcomment"> <p>by Ricardo on <time>september 15, 2012</time></p> <p>easy on the HDR buddy.</p> </div> <hr/> <div> <p>by Susan on <time>october 1, 2012</time></p> <p>i love Central Park.</p> </div> <hr/> </body> #latestcomment { font-style: italic; color: brown; }

Id versus Class Selectors How to decide Id selectors should only be used when referencing a single HTML element since an id attribute can only be assigned to a single HTML element. Class selectors should be used when (potentially) referencing several related elements.

Section 5 of 7 THE CASCADE: HOW STYLES INTERACT

Why Conflict Happens In CSS that is Because there are three different types of style sheets (author-created, user-defined, and the default browser style sheet), author-created stylesheets can define multiple rules for the same HTML element, CSS has a system to help the browser determine how to display elements when different style rules conflict.

Cascade How conflicting rules are handled in CSS The Cascade in CSS refers to how conflicting rules are handled. The visual metaphor behind the term cascade is that of a mountain stream progressing downstream over rocks. The downward movement of water down a cascade is meant to be analogous to how a given style rule will continue to take precedence with child elements.

Cascade Principles CSS uses the following cascade principles to help it deal with conflicts: inheritance, specificity, location

Inheritance Cascade Principle #1 Many (but not all) CSS properties affect not only themselves but their descendants as well. Font, color, list, and text properties are inheritable. Layout, sizing, border, background and spacing properties are not.

Inheritance <head> <html> <body> body { font-family: Arial; color: red; border: 8pt solid green; margin: 100px; } inherited inherited not inherited not inherited <meta> <title> <h1> <h2> <p> <img> <h3> <div> <div> <p> <a> <strong> <p> <p> <p> <p> <small> <time> <time>

Inheritance How to force inheritance It is possible to tell elements to inherit properties that are normally not inheritable. div { font-weight: bold; margin: 50px; border: 1pt solid green; } p { border: inherit; margin: inherit; } <h3>reviews</h3> <div> <p>by Ricardo on <time>september 15, 2012</time></p> <p>easy on the HDR buddy.</p> </div> <hr/> <div> <p>by Susan on <time>october 1, 2012</time></p> <p>i love Central Park.</p> </div> <hr/>

Inheritance <head> <html> <body> div { font-weight: bold; margin: 50px; border: 1pt solid green; } inherited not inherited not inherited <meta> <title> <h1> <h2> <p> <img> <h3> <div> <div> <p> <a> <strong> <p> <p> <p> <p> <small> <time> <time>

Section 6 of 7 THE BOX MODEL

The Box Model Time to think inside the box In CSS, all HTML elements exist within an element box. It is absolutely essential that you familiarize yourself with the terminology and relationship of the CSS properties within the element box.

The Box Model margin padding border Every CSS rule begins with width a selector. The selector identifies which element or elements in the HTML document will be height affected by the declarations in the rule. Another way of thinking of selectors is that they are a pattern which is used element content area by the browser to select the HTML elements that will receive background-color/background-image of element background-color/background-image of element s parent Every CSS rule begins with a selector. The selector identifies which element or elements in the HTML document will be affected by the declarations in the rule. Another way of thinking of selectors is that they are a pattern which is used by the browser to select the HTML elements that will receive

Developer Tools Help is on the way Developer tools in current browsers make it significantly easier to examine and troubleshot CSS than was the case a decade ago. You can use the various browsers CSS inspection tools to examine, for instance, the box values for a selected element.

Developer Tools Chrome Inspect Element Firefox Inspect Opera Inspect Element Internet Explorer Developer Tools

Section 7 of 7 TEXT STYLING

Text Properties Two basic types CSS provides two types of properties that affect text. font properties that affect the font and its appearance. paragraph properties that affect the text in a similar way no matter which font is being used.

Font-Family A few issues here A word processor on a desktop machine can make use of any font that is installed on the computer; browsers are no different. However, just because a given font is available on the web developer s computer, it does not mean that that same font will be available for all users who view the site. For this reason, it is conventional to supply a so-called web font stack, that is, a series of alternate fonts to use in case the original font choice in not on the user s computer.

Specifying the Font-Family 1 Use this font as the first choice 3 If it isn t available, then use this one p { font-family: Cambria, Georgia, "Times New Roman", serif; } 2 But if it is not available, then use this one 4 And if it is not available either, then use the default generic serif font