i nternet intranet and w eb
play

I nternet , intranet and W eb L ecture III C ascading S tyle S heets - PowerPoint PPT Presentation

I nternet , intranet and W eb L ecture III C ascading S tyle S heets , and S erver S ide W eb T echnologies Marco Solieri marco.solieri@lipn.univ-paris13.fr Dpartement dInformatique, Institut Galile, Universit Paris Nord November 7 th,


  1. I nternet , intranet and W eb L ecture III C ascading S tyle S heets , and S erver S ide W eb T echnologies Marco Solieri marco.solieri@lipn.univ-paris13.fr Département d’Informatique, Institut Galilée, Université Paris Nord November 7 th, 2014

  2. O utline 1 CSS 3 : presentational markup 2 W eb server 3 PHP language 4 PHP and HTTP 5 PHP and storage M. S olieri (I nformatique , I nstitut G alilée ) IWEB: CSS, and S erver S ide T echs 11 / 7 / 2014 2 / 59

  3. CSS 3 : presentational markup Section 1 CSS 3 : presentational markup M. S olieri (I nformatique , I nstitut G alilée ) IWEB: CSS, and S erver S ide T echs 11 / 7 / 2014 3 / 59

  4. CSS 3 : presentational markup H istory B irth of presentation markup for W eb Presentation inside HTML • Mosaic browser protype: font size and name • Netscape 1 . 0 : first tags for font settings, centering . . . • HTML 2 . 0 - HTML 3 . 2 : many tags for font style, colors . . . Separation between other markup • Bos and Lie proposed a language for styling HTML pages: CSS • Idea: multiple style sheet acting in chain (cascading!) • W 3 C working group for standardization Killer features: • better control of HTML presentation for authors and users, • independence from the specific (X)HTML version. M. S olieri (I nformatique , I nstitut G alilée ) IWEB: CSS, and S erver S ide T echs 11 / 7 / 2014 3 / 59

  5. CSS 3 : presentational markup H istory CSS versions • W 3 C Recommendation in 1996 ; L evel 1 • visual formatting: presentation for browser rendering on screen. L evel 2 • W 3 C Recommendations in 1998 and 2011 ; • multiple media presentation, more complex layout management. • W 3 C Recommendation in 2011 ; L evel 3 • extensions to layout, colors, borders, animations, transformations . . . ; • support by browser: still not complete, quite heterogeneous; need to be checked: • http://caniuse.com/ • http://www.w 3 schools.com/css 3 / • still in development, not supported at all. L evel 4 M. S olieri (I nformatique , I nstitut G alilée ) IWEB: CSS, and S erver S ide T echs 11 / 7 / 2014 4 / 59

  6. CSS 3 : presentational markup S yntax D eclarations D efinition (P roperty ) Style trait assignable to an element. D efinition (D eclaration ) Statement defining the value of a property, in the form: property : value E xample (S tyle declarations ) color : green ; font-family : Arial ; font-size : 12 pt ; margin-left : 15 pt ; M. S olieri (I nformatique , I nstitut G alilée ) IWEB: CSS, and S erver S ide T echs 11 / 7 / 2014 5 / 59

  7. CSS 3 : presentational markup S yntax R ules D efinition (S elector ) Statement defining a set of elements in the (X)HTML tree. D efinition (R ule ) Selector(s) followed by a block of declarations, in the form: selector , ... { declaration ; ... } E xample (R ules ) p { font-family : Arial; font-size : 12 pt; } h1 , h2 , h3 { color : red; margin-left : 15 pt; } M. S olieri (I nformatique , I nstitut G alilée ) IWEB: CSS, and S erver S ide T echs 11 / 7 / 2014 6 / 59

  8. CSS 3 : presentational markup S electors B ase and structural selectors Base selectors: U niversal * T ype Element C lass Element.classname ID Element#id Structural combinators: C hild Element1 > Element2 D escendent Element1 Element2 A djacent Element1 ∼ Element2 S uccessor Element1 + Element2 M. S olieri (I nformatique , I nstitut G alilée ) IWEB: CSS, and S erver S ide T echs 11 / 7 / 2014 7 / 59

  9. CSS 3 : presentational markup S electors P seudo classes selectors : structure and links Document structure: C ardinality Element:nth-child(n) , Element:nth-of-child(n) U niqueness Element:only-child(n) , Element:only-of-type(n) E mptiness Element:empty , Link: U nvisited link Element:link V isited hyperlink Element:visited M. S olieri (I nformatique , I nstitut G alilée ) IWEB: CSS, and S erver S ide T echs 11 / 7 / 2014 8 / 59

  10. CSS 3 : presentational markup S electors P seudo classes selectors : user and interface User actions: A ctivation Element:active P ointing Element:hover F ocusing Element:focus Interface behaviour: E nabling Element:enabled D isabling Element:disabled M. S olieri (I nformatique , I nstitut G alilée ) IWEB: CSS, and S erver S ide T echs 11 / 7 / 2014 9 / 59

  11. CSS 3 : presentational markup S electors A ttributes and pseudo element selectors Attributes: A ttribute ownership Element[attribute] V alue is Element[attribute="value"] V alue list contains Element[attribute ="value"] V alue contains Element[attribute*="value"] Generation time orderings: S uccessor Element::before P redecessor Element::after Pseudo elements: F irst line Element::first-line F irst letter Element::first-letter M. S olieri (I nformatique , I nstitut G alilée ) IWEB: CSS, and S erver S ide T echs 11 / 7 / 2014 10 / 59

  12. CSS 3 : presentational markup S electors M eta selectors ( the so - called at rules ) Seven selectors for defining meta rules 1 @charset character set encoding, 2 @font-face customized font, automagically downloaded, 3 @import rule inclusion from other stylesheets 4 @media media type targeting: screen, print, projection, aural . . . 5 @namespace definition of xml namespaces 6 @page paged media styling: margins, padding . . . 7 @phonetic-alpabet alphabet to be used when specifying pronounces of words Brand new from CSS 3 M. S olieri (I nformatique , I nstitut G alilée ) IWEB: CSS, and S erver S ide T echs 11 / 7 / 2014 11 / 59

  13. CSS 3 : presentational markup P roperties V isualization Base visualization concepts: • Every element is visualized by a box. • Boxes contains boxes of all contained elements. • Multiple boxes are placed according to their properties: M. S olieri (I nformatique , I nstitut G alilée ) IWEB: CSS, and S erver S ide T echs 11 / 7 / 2014 12 / 59

  14. CSS 3 : presentational markup P roperties T ext properties Visualization properties: • display : block for vertical order, inline for horizontal order. • float : top-left or top-right corner, with other boxes all around. • position : • static for default; • absolute or relative positioning, possibly with hiding overlay; • fixed for non scrolling. • z-index : boxing level in the overlaying stack. • visibility : hidden status, for caching hacks. M. S olieri (I nformatique , I nstitut G alilée ) IWEB: CSS, and S erver S ide T echs 11 / 7 / 2014 13 / 59

  15. CSS 3 : presentational markup P roperties T ext properties Multicolumn layout properties (new from CSS 3 ) • text naturally flows, with adaptive column number, • some properties: column-width , column-gap , column-rule Text properties: • font-family : name of the font (e.g. Dejavu Sans, Tahoma) • font-style : normal, italic, oblique • font-weight : normal, bold, bolder, lighter • font-stretch : normal, wider, narrower, condensed, expanded • text-indent , text-align , text-height : indentation, alignment, interline • text-decoration : none, underline, overline, blink • letter-spacing , word-spacing • text-tranform : none, capitalize, uppercase, lowercase M. S olieri (I nformatique , I nstitut G alilée ) IWEB: CSS, and S erver S ide T echs 11 / 7 / 2014 14 / 59

  16. CSS 3 : presentational markup S tyle and XHTML S pecifying the style Four styles of choosing the style: 1 declarations inside a <style> attribute in the HTML element, 2 rules inside a <style> element, 3 importing stylesheet from a <style> element, 4 linking stylesheet from a <link> element. Three granularity levels of styling: 1 type of element, e.g. all the paragraphs; 2 category, e.g. all the paragraphs with some class attribute; 3 element, e.g. the paragraph with some unique id attribute. M. S olieri (I nformatique , I nstitut G alilée ) IWEB: CSS, and S erver S ide T echs 11 / 7 / 2014 15 / 59

  17. CSS 3 : presentational markup S tyle and XHTML E xamples of internal style E xample (D eclaration inside paragraph element ( 1 )) <p id="p1" style="color: red;" > ... E xample (R ule inside the document ( 2 )) ... <style type="text/css" > #p1 { color : red; } ... </style> </head> ... <p id="p1" > ... M. S olieri (I nformatique , I nstitut G alilée ) IWEB: CSS, and S erver S ide T echs 11 / 7 / 2014 16 / 59

  18. CSS 3 : presentational markup S tyle and XHTML E xamples of external style E xample (I mporting from a style element ( 3 )) ... <style type="text/css" > @import url (/ style / external.css ) </style> </head> ... <p id="p1" > ... E xample (L inking from a a style element ( 4 )) ... <link type="text/css" rel="stylesheet" href="/style/external.css" /> </head> ... <p id="p1" > ... M. S olieri (I nformatique , I nstitut G alilée ) IWEB: CSS, and S erver S ide T echs 11 / 7 / 2014 17 / 59

  19. CSS 3 : presentational markup C ascade C ascade Stylesheet composition is • sequential: there is a specified order in the chain, • possibly overlapping: attributes can be rewritten. Chain ordering idea: • (most of) undeclared properties are defaulted; • ordering by media type; • ordering by importance flag; • ordering by source: user, author, user-agent; • ordering by specificity: minimum inheritance; • ordering by writing placement. M. S olieri (I nformatique , I nstitut G alilée ) IWEB: CSS, and S erver S ide T echs 11 / 7 / 2014 18 / 59

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend