Presentation is loading. Please wait.

Presentation is loading. Please wait.

© 2010, Robert K. Moniot Chapter 5 CSS : Cascading Style Sheets 1.

Similar presentations


Presentation on theme: "© 2010, Robert K. Moniot Chapter 5 CSS : Cascading Style Sheets 1."— Presentation transcript:

1 © 2010, Robert K. Moniot Chapter 5 CSS : Cascading Style Sheets 1

2 OBJECTIVES In this chapter, you will learn: How to control document appearance with style sheets: –Specifying font, size, color, etc. of text –Specifying element backgrounds and colors –Controlling text flow, margins, borders, and padding How to make web pages share style sheets for uniform look. How to use the class attribute to apply styles to document elements according to their function. How to use pseudo-classes to allow element styles to respond to dynamic events. © 2010, Robert K. Moniot2

3 Style Sheets Each element on a page has a style defined for it. The style is defined by a set of attribute : value pairs. Style attributes can control: –Typeface and font properties –Background properties –Box-related properties –List properties 3

4 © 2010, Robert K. Moniot Ways to define styles Default style: provides values for all element properties, unless you change it. (Note: user can customize browser to change defaults!) Inline style: style is defined as an attribute of the element in-place. Use this for “one-off” or special styles. Embedded style sheet: styles defined in the head portion of web page. Use this if you don’t have very many web pages, or for styles that are useful only for the given page. External style sheet: styles defined in a separate file. Use this to centralize style definitions and provide uniformity across all pages of a web site. 4

5 © 2010, Robert K. Moniot Embedded Style Sheet Page with embedded style selector { attribute : value ; attribute : value... } selector { attribute : value ; attribute : value... }...... Style definitions go into a element in document head. Selector determines what elements the style rule applies to. Style definitions separated by ; are enclosed in { } 5

6 © 2010, Robert K. Moniot Embedded Style Sheet (cont’d) Page with embedded style selector { attribute : value ; attribute : value... } selector { attribute : value ; attribute : value... }...... The type attribute can only be "text/css". Note: CSS is not HTML! 6

7 © 2010, Robert K. Moniot Example Example page with embedded style body { font-family : sans-serif; color : blue; background-color : yellow } h1 { font-style : italic } p { font-size : 14pt } ol { font-size : 12pt; color : red; font-family : serif }... Here the selectors are simply tag names. The style rules will apply to elements defined by those tags. Result (Example 1)Result 7

8 On-Line References There are many, many style properties. These slides only show a few. Your text shows more. For a complete list, plus examples, consult one of these references: w3.org – the World-Wide Web Consortium: the official standardw3.org w3schools.com – a commercial site, but free access, includes tutorialsw3schools.com © 2010, Robert K. Moniot8

9 Length Units Relative lengths (depend on screen resolution and/or local text size) –px = pixels –em = (originally) width of letter M –ex = (originally) height of letter x, roughly ½ an em –% = percentage of the default font size or window size Absolute lengths (rendered as closely as possible) –in = inches –cm = centimeters –mm = millimeters –pt = points = 1/72 in –pc = picas = 12 pt = 1/6 in © 2010, Robert K. Moniot9

10 Inheritance A descendant is an element that is enclosed (nested) in another, its ancestor. (If it is an immediate descendant, it is a child of the enclosing element, its parent. Elements having the same parent are siblings.) All descendants of an element inherit its style properties, unless these are overridden by their own style rules. 10

11 Precedence Rules User-defined styles (preferences) take precedence over browser defaults. Styles defined by web page author take precedence over user preferences. Styles defined by child element take precedence over styles inherited from parent. If two styles could apply to the same element, the one defined by the more specific rule will be used. For instance, an explicit rule is always more specific than an inherited rule. © 2010, Robert K. Moniot11

12 © 2010, Robert K. Moniot Compound Selectors Selectors can be defined so that a style rule applies to an element only when it is a descendant of a certain other type of element. Examples: ul ul { list-style-type : square } This specifies that an unordered list inside another unordered list will be bulleted by squares. h1 em em { color : red } This specifies that emphasized text inside emphasized text in an header will appear in red. 12

13 © 2010, Robert K. Moniot Compound selectors are more specific than simple selectors. For instance, if a style sheet defines both p { color : red } div p { color : blue } then for a tag that is inside a element, the second rule would apply. Compound Selectors 13

14 © 2010, Robert K. Moniot Style Classes These allow you to control which elements of a given type should use a style rule. This method has two parts: –In the style sheet, the selector defines the class name, which is preceded by a period. –In the HTML, the tag includes the class attribute and specifies the value of the class name Example: Define the nodec class for anchor tags: a.nodec { text-decoration : none } This suppresses the usual underlining. Use it in HTML like so: Link text 14

15 © 2010, Robert K. Moniot Style Classes Style classes can also be “generic,” i.e. not tied to a specific element type. Example: Define the zowie class:.zowie { text-decoration : blink } Use it on an emphasized element: Important! Use it with no other style attributes: Buy Now! By the way: promise me you won’t ever use blink! Example 2 15

16 © 2010, Robert K. Moniot The and Tags These tags are provided to allow arbitrary chunks of HTML to be treated as elements. This is usually done in order to apply style attributes to them, as in the preceding example. A... element defines an “inline” structure, i.e. it simply defines a stretch of text. Thus it can be used within a paragraph or table element without affecting the flow of the text. A... element defines a “block” structure. Usually the browser will place line breaks before and after this element, but otherwise it has no effect itself. 16

17 © 2010, Robert K. Moniot Pseudo-classes These are like style classes, but an element acquires a pseudo-class by user action or by a relationship other than descendancy. In the style sheet, a pseudo-class name is preceded by a colon. In the HTML, the pseudo-class name is NOT used with the affected tag, because it is implied. 17

18 © 2010, Robert K. Moniot Pseudo-classes Link-related pseudo-classes a:link { color : red } Applies when the link has not yet been visited. a:visited { color : green } Applies when the link has been visited. a:hover { color: yellow } Applies when the mouse is over the link. 18

19 © 2010, Robert K. Moniot Cascading Rule If two equally specific rules can apply to the same element, the one that comes last in the style sheet is used. Thus, in the example below, a:hover must follow a:link and a:visited in order to have effect, since a link can be both visited (or not) and hovering. The order of the first two doesn’t matter since they are mutually exclusive. a:link { color : red } a:visited { color : green } a:hover { color : yellow } ResultResult (Example 3) 19

20 © 2010, Robert K. Moniot Pseudo-elements :first-line is a pseudo-element that consists of the first line of text in a block-level element. :first-letter is a pseudo-element that consists of the first letter of the text in an element. Closely related to pseudo-classes, in that they are defined by relationships, not by explicit declarations. A pseudo-element refers to a virtual element that is part of an actual element, rather than a special case of a whole element. 20

21 © 2010, Robert K. Moniot Pseudo-elements p { text-indent: 1em } p.initial { text-indent: 0 } p.initial:first-line { text-transform: uppercase } p.initial:first-letter { font-size: 24pt } This indents all normal paragraphs. A paragraph that is declared with class="initial" is not indented, and its first line appears in all capital letters, with an extra-large first letter. ResultResult (Example 4) 21

22 © 2010, Robert K. Moniot Inline Styles Defined for individual elements, at the point of use (in the HTML). Useful for “one-off” styles that are not likely to be used elsewhere. Method: HTML text The attribute:value pairs are what would go between { } if this were a style-sheet rule. There is no selector since the style applies to this element only. Example 4 22

23 © 2010, Robert K. Moniot External Style Sheets A style sheet can be placed in a separate file (usually named with suffix.css) and referenced by HTML files that need it. Useful for centralizing control of style and ensuring uniform appearance across many pages of a web site. The contents of the file are what would go between... of an embedded style sheet. Note: this file is not HTML! The file is referenced using a tag in the HTML document's head portion. 23

24 © 2010, Robert K. Moniot Example of style sheet /* This style sheet defines an "excerpt" class for paragraphs that is much like blockquote. */ p.excerpt { font-style : italic; margin-right : 2em; margin-left : 2em; } Here is what an external style sheet (named style.css) could contain: Note that there is no HTML in this file! This example also illustrates a CSS comment between /* and */. Such comments can be placed in external or embedded style sheets. 24

25 © 2010, Robert K. Moniot Example using style sheet The rel attribute specifies the relationship of the referenced file to this page. The type attribute must be "text/css". The href attribute is a URL pointing to the external style sheet. Style Example... affected text... ResultResult (Example 5) 25

26 Box Model All block-level elements are considered to be inside a box surrounded by padding, a border, and a margin. Typically the border is black, and margin and padding provide space around it. © 2010, Robert K. Moniot26 Margin Border Padding Content

27 Borders, Margins, Padding Widths can be set all around (e.g. border-width, margin ) or on each side individually (e.g. border- top-width, margin-top). Different border styles can be selected with border- style. Default is none, i.e. border is invisible. © 2010, Robert K. Moniot27

28 Floats Block-level objects can be floated, so that they are positioned all the way to left or right on the page. –Usually used for images, but can also be used for text if width is made less than full page. Position specified by float property, with values left or right. Adjacent floats are rendered next to each other if space allows. Text following a float will flow around it unless the clear property is applied. © 2010, Robert K. Moniot28 Example 6

29 Controlling display Rendering of elements can be controlled using display property. Values: –none : element will not be rendered –inline : element will be rendered in-line with surrounding content, like a –block : element will be rendered as a block, i.e. with line break before and after, like a Use to change block elements to inline or vice versa Can change dynamically, e.g. using hover pseudoclass © 2010, Robert K. Moniot29 Example 7

30 Invisibility There is also a visibility:hidden property that makes an element invisible, but it still takes up space in the rendered document. © 2010, Robert K. Moniot30

31 User Style Sheets Users can specify their own style sheets, to apply in absence of overriding styles from document style sheets. Internet Explorer 7: Tools → Internet Options → General → Accessibility Allows user to specify a style sheet to use. Mozilla Firefox: uses a file named userChrome.css in chrome subdirectory of Firefox application data directory. © 2010, Robert K. Moniot31


Download ppt "© 2010, Robert K. Moniot Chapter 5 CSS : Cascading Style Sheets 1."

Similar presentations


Ads by Google