SlideShare a Scribd company logo
CSS Basic

Nitin Bhide
(http://thinkingcraftsman.in)
May 2011

Commercial In Confidence
What is CSS ?



What is a ‘Style Sheet’ ?


January 14

Why ‘Cascading’ ?

Commerical in Confidence (C) NItin Bhide

2
Structured Document


The content of Structured documents can be
reused in many contexts and presented in
various ways



A structured document is an electronic
document where some method of embedded
coding (i.e. markup) is used to give the whole,
and parts, of the document various structural
meanings according to a schema.



SGML pioneered the concept of structured
documents

January 14

Commerical in Confidence (C) NItin Bhide

3
Structured Documents


SGML was based on two novel concepts
1.

2.



Markup should describe a document's structure and
other attributes. It should not specify the processing
to be performed on it.
This way descriptive markup needs to be done only
once, and will suffice for future processing.
Markup should be rigorous so that the techniques
available for processing rigorously-defined objects
like programs and databases can be used for
processing documents as well.
For example, generating documents of various quality,
automatically generating titles and indices, etc.

DTD (Document Type Definition) defines the
‘schema’ (or meaning of each structural element).

January 14

Commerical in Confidence (C) NItin Bhide

4
Structured Documents


Most widely used structured document formats
◦ HTML, XML, SVG, XUL etc



XML

◦ The W3C XML (Extensible Markup Language) is a
profile (subset) of SGML
◦ It is designed to ease the implementation of the parser
compared to a full SGML parser,
◦ XML is primarily designed for use on the World Wide
Web
◦ Applications of XML include XHTML, XQuery, XSLT,
XForms, XPointer, JSP, SVG, RSS, Atom, XML-RPC,
Semantic Web, and SOAP.

January 14

Commerical in Confidence (C) NItin Bhide

5
What is a Style Sheet ?
For content in structured documents to be
presented, a set of stylistic rules must be applied.
 Typical Stylistic rules describe


◦ Colors,
◦ Fonts,
◦ Layout



A collection of stylistic rules is called a style
sheet.



Different style sheets can be attached to the logical
structure to produce different presentations.
◦ For example, how content will be when printed, when
viewed on computer, in-voice, for Braile etc.

January 14

Commerical in Confidence (C) NItin Bhide

6
Why ‘Cascading’ ?


CSS specifies a priority scheme to
determine which style rules apply if
more than one rule matches against a
particular element.



In this so-called cascade, priorities or
weights are calculated and assigned to
rules, so that the results are predictable.

January 14

Commerical in Confidence (C) NItin Bhide

7
CSS – Some history


CSS Level 1 :
◦ Initial Release.
◦ 17 December 1996; 15 years ago



CSS Level 2 :
◦ Published in May 1998
◦ Superset of Level 1



CSS Level 3:
◦ CSS3 is divided into several separate
documents called "modules".
◦ The earliest CSS3 drafts published in June
1999.

January 14

Commerical in Confidence (C) NItin Bhide

8
CSS Structure - Rule
A style sheet consists
of a list of rules.

Each rule or rule-set
consists of one or
more selectors and a
declaration block.
January 14

Commerical in Confidence (C) NItin Bhide

9
CSS Structure – Declaration Block
consists of a list of
declarations in braces.

Each declaration itself
consists of a property, a
colon (:), a value.

If there are multiple
declarations in a
block, a semi-colon (;)
must be inserted to
separate each
declaration.
January 14

Commerical in Confidence (C) NItin Bhide

10
CSS Structure : Selectors
are used to declare which
of the markup elements a
style applies to, a kind of
match expression.

Selectors may apply to all
elements of a specific type
(e.g. class), or only those
elements that match a
certain attribute (e.g. id);

Elements may be matched
depending on how they
are placed relative to each
other in the markup
code, or on how they are
nested within the DOM.
January 14

Commerical in Confidence (C) NItin Bhide

11
Cascade scheme (priority scheme)
High  Author styles (provided by the web page author):
◦ Inline styles, inside the HTML document, style information on a
single element, specified using the "style" attribute
◦ Embedded style, blocks of CSS information inside the HTML itself
◦ External style sheets, i.e., a separate CSS file referenced from the
document


User style:
◦ A local CSS file the user specifies with a browser option, which acts
as an override applied to all documents



User agent (browser) style:
◦ Default styles applied by the user agent, i.e., the browser's default
settings for element presentation
◦ Each browser has slightly different defaults for various elements

Low
January 14

Commerical in Confidence (C) NItin Bhide

12
CSS Advantages
Flexibility
Separation of content from presentation
• CSS facilitates publication of content in multiple presentation formats based on
nominal parameters. Nominal parameters include
• explicit user preferences,
• different web browsers,
• the type of device being used to view the content (a desktop computer or mobile
Internet device),
• the geographic location of the user and many other variables.

Site-wide consistency
• a global style sheet can be used to affect and style elements site-wide.
• If the situation arises that the styling of the elements should need to be changed or
adjusted, these changes can be made by editing rules in the global style sheet.
• Before CSS, this sort of maintenance was more difficult, expensive and timeconsuming.

January 14

Commerical in Confidence (C) NItin Bhide

13
CSS Advantages
Reduced Bandwidth
• A stylesheet specifies the style once for a range of HTML elements
selected by class, type or relationship to others.
• This is much more efficient than repeating style information inline
for each occurrence of the element.
• An external stylesheet is usually stored in the browser cache, and
can therefore be used on multiple pages without being reloaded,
further reducing data transfer over a network.

Page reformatting
• With a simple change of one line, a different style sheet can be
used for the same page.
• This has advantages for accessibility, as well as providing the ability
to tailor a page or site to different target devices.
Furthermore, devices not able to understand the styling still
display the content.
January 14

Commerical in Confidence (C) NItin Bhide

14
CSS BROWSER SUPPORT

January 14

Commerical in Confidence (C) NItin Bhide

15
Browser Support


Features supported
◦ Feature support of various browser and
their version is documented on wikipedia
◦ Comparison of CSS Layout Engines



Different User Agent styles:
◦ Default values of various elements like
fonts, colors, layouts etc.
◦ Yahoo ‘reset.css’

January 14

Commerical in Confidence (C) NItin Bhide

16
ACID Tests
Testpages Developed by ‘Web Standard
Project’.
 ACID 2 focuses mainly on CSS.
 ACID3 tests DOM and Javascript as
well.
 Mainly developed by Ian Hickson
(Google employee)
 Test pages are available at
http://acidtests.org


January 14

Commerical in Confidence (C) NItin Bhide

17
CSS Frameworks
Pre-prepared libraries
That allow for easier, more standardscompliant styling of web pages
 Minimize the browser specific variations
 usually incorporated as external .css sheets
referenced in the HTML <head>
 Included before ‘custom css’.





For Example

◦ Yahoo CSS Grid, reset.css
◦ BluePrint (by Googlers)
◦ 960 Grid

January 14

Commerical in Confidence (C) NItin Bhide

18
CSS BOX MODEL &
POSITIONING

January 14

Commerical in Confidence (C) NItin Bhide

19
CSS Box Model

Margin

Border

• Clears an area
around the border.
• The margin does not
have a background
color,
• it is completely
transparent

January 14

• A border that goes
around the padding
and content.
• The border is
affected by the
background color of
the box

Padding
• Clears an area
around the content.
• The padding is
affected by the
background color of
the box

Commerical in Confidence (C) NItin Bhide

Content
• The content of the
box, where text and
images appear

20
Positioning Schemes
CSS 2.1 defines three positioning schemes:

Normal flow
• Inline items are laid out in the same way as the letters in words in text, one after the
other across the available space until there is no more room, then starting a new line
below.
• Block items stack vertically, like paragraphs and like the items in a bulleted list.
• Normal flow also includes relative positioning of block or inline items, and run-in
boxes.

Floats
• A floated item is taken out of the normal flow and shifted to the left or right as far as
possible in the space available.
• Other content then flows alongside the floated item.

Absolute positioning
• An absolutely positioned item has no place in, and no effect on, the normal flow of
other items.
• It occupies its assigned position in its container independently of other items
January 14

Commerical in Confidence (C) NItin Bhide

21
Position
Static
• The default value places the item in the normal flow

Relative
• The item is placed in the normal flow, and then shifted or offset from that
position.
• Subsequent flow items are laid out as if the item had not been moved.

Absolute
• Specifies absolute positioning

Fixed
• The item is absolutely positioned in a fixed position on the screen even as the
rest of the document is scrolled

If an item is positioned in any way other than static, then the further
properties top, bottom, left, and right are used to specify offsets and
positions.
January 14

Commerical in Confidence (C) NItin Bhide

22
Float & Clear
Notes
• Absolutely positioned or fixed items cannot be floated.
• Other elements normally flow around floated items, unless they are
prevented from doing so by their clear property.

Float:left
• Floats to the left of the line that it would have appeared in; other items
may flow around its right side

Float:right
• Floats to the right of the line that it would have appeared in; other
items may flow around its left side

Float:none
• Removes the float property from an item
January 14

Commerical in Confidence (C) NItin Bhide

23
CSS LAYOUTS

January 14

Commerical in Confidence (C) NItin Bhide

24
Table layouts Vs CSS Layouts
Table Layouts
• mixes presentational data
in with content.
• Needs to create separate
pages for different
‘representations’ like
print, on screen, mobile
devices, voice etc
• Hard to maintain visual
consistency across pages
• Larger page download
sizes.

January 14

Commerical in Confidence (C) NItin Bhide

CSS Layouts
• Smaller page sizes, CSS file
is shared across
• Separates presentation data
and content
• Different css defines how
page will be displayed on
various ‘representations’
like print, on screen,
mobile devices etc.
• Easy to maintain visual
consistency across pages.
• Redesigns are easier and
less expensive
25
Table layouts Vs CSS Layouts
Table Layout
• Looks nearly same in all
browsers
• Works well in HTML
emails
• Hence Minimize the table
use.
• Easy to get ‘correct’ fluid
layout

January 14

Commerical in Confidence (C) NItin Bhide

CSS Layout
• Needs some care to ensure
that results are same in all
browsers.
• Because of ‘casacading’
nature, difficult to find
offending css rule.
• Small change can break
multiple pages.
• Don’t work well in HTML
emails.
• Take correct to get the
correct results in ‘fluid’
layouts
26
DESIGNING WITH CSS

January 14

Commerical in Confidence (C) NItin Bhide

28
Steps to Design with CSS
Identify the types of
content/information
in your site as a whole
•
•
•
•
•
•

Identify the sections
and pages of your site.

Product information
Pricing information
Company information
Investor information
Shopping cart
User forums and so on

January 14

Commerical in Confidence (C) NItin Bhide

29
Steps to Design with CSS
Analyze existing markup for
presentational HTML that
can be replaced with
structural markup

Breaking down your pages
with logical divisions of
content.
•
•
•
•
•
•

Main navigation
Sub navigation
Headers and footers
Content
Related information
Other

January 14

• <font> tags
• the <b> and <br> markup.
• presentational markup for
tables (bgcolor, background,
and the like).

Commerical in Confidence (C) NItin Bhide

30
Steps to Design With CSS
Replace presentational tags with
structural markup
• Think about the structure of
your document!
• What is the most important
header? Mark it up with an <h1>
tag.
• Mark your subheads with <h2>
tags and so on.
• Mark up paragraphs with <p>
tags.
• Mark up your navigation as
unordered lists.
• Choose a DOCTYPE and use it.
(Use XHTML transitional, if you
really want to be ‘strict’ use
XHTML strict.)

January 14

Divide your page into logical
divs
• Put your main navigation into a
div with an id of mainnav;
• put your subnav inside a div with
an id or class of subnav,
• put your footer in a <div
id="footer">,
• wrap your content inside a <div
id="content">.
• Page doesn't look like much now,
but once you start adding rules to
your style sheets, things will get
better quickly.

Commerical in Confidence (C) NItin Bhide

31
Steps in Designing with CSS
It’s time to start writing your CSS
• At the begining, give each div a border.
For example, div {border: 1px dotted gray; padding: .5em}
This will help you see where they begin and end, and also
whether or not you have any nesting going on.
• Write your CSS for element selectors first
(<html>, <body>, <p>, <h1>, <h2>, <ul>, <li>, etc.)
• Use contextual or descendant selectors as much as
possible.
This will keep your markup much cleaner. For example,
#subnav li {border: 1px solid black; padding: .5em; display:
inline} will only affect list items that occur within your
subnav div.
• Test in as many browsers as you can and get your friends to
test it in their browsers.
January 14

Commerical in Confidence (C) NItin Bhide

32
CSS TIPS

January 14

Commerical in Confidence (C) NItin Bhide

33
CSS Tips
Minimize use of tables.
 Make sure that ids are unique.


◦ CSS just assumes Ids are unique.
◦ And incase of multiple ids, apply the rule
on first id found


Donot use external or internal style
sheets in HTML emails. Use ‘style’
attribute on individual element.

January 14

Commerical in Confidence (C) NItin Bhide

34
CSS Limitations
Poor controls for flexible layouts
• CSS is still at heart a styling language (for fonts, colours, borders and other
decoration), not a layout language (for blocks with
positions, sizes, margins, and so on).
• While new additions to CSS3 provide a stronger, more robust feature-set for
layout
• Still These limitations mean that creating fluid layouts generally requires handcoding of CSS.
• Hence key feature of Many CSS Framework, is ‘Grid Layouts’.
• It has held back the development of a standards-based WYSIWYG editor.

Selectors are unable to ascend
• CSS offers no way to select a parent or ancestor of an element that satisfies
certain criteria.
• An advanced selector scheme (like XPath) would enable more sophisticated
style sheets.
• The main reasons for the CSS Working Group rejecting proposals for parent
selectors are related to browser performance and incremental rendering issues.
January 14

Commerical in Confidence (C) NItin Bhide

35
CSS Limitations
Vertical control limitations
• Vertical placement is frequently unintuitive, convoluted, or impossible.
• Simple tasks (such as centering an element vertically or getting a footer to
be placed no higher than bottom of viewport) either require complicated
and unintuitive style rules, or simple but widely unsupported rules.

Absence of expressions
• There is currently no ability to specify property values as simple
expressions (such as margin-left: 10% - 3em + 4px;).
• This would be useful in a variety of cases, such as calculating the size of
columns subject to a constraint on the sum of all columns.
• However, a working draft with a calc() value to address this limitation has
been published by the CSS WG.
• Internet Explorer versions 5 to 7 support a proprietary expression()
statement, It statement is no longer supported from Internet Explorer 8
onwards,
January 14

Commerical in Confidence (C) NItin Bhide

36
CSS Limitations
Lack of column declaration
• While possible in current CSS 3 (using the column-count module)
• Layouts with multiple columns can be complex to implement in CSS2.1.
• With CSS 2.1, the process is often done using floating elements, which are often rendered
differently by different browsers, different computer screen shapes, and different screen ratios set
on standard monitors.

Cannot explicitly declare new scope independently of position
• Scoping rules for properties such as z-index look for the closest parent element with a
position:absolute or position:relative attribute.
• This odd coupling has undesired effects such as it is impossible to avoid declaring a new scope
when one is forced to adjust an element's position, preventing one from using the desired scope of
a parent element.

Pseudo-class dynamic behavior not controllable
• CSS implements pseudo-classes that allow a degree of user feedback by conditional application of
alternate styles.
• One CSS pseudo-class, ":hover", is dynamic (equivalent of javascript "onmouseover") and has
potential for abuse (e.g., implementing cursor-proximity popups),
• but CSS has no ability for a client to disable it (no "disable"-like property) or limit its effects (no
"nochange"-like values for each property).

January 14

Commerical in Confidence (C) NItin Bhide

37
REFERENCES

January 14

Commerical in Confidence (C) NItin Bhide

38
References
1.
2.
3.
4.
5.

6.

CSS Filters (or CSS hacks)
CSS Limitations
CSS Feature Support comparison table
CSS contents and browser
compatibility
CSS Zen Garden.
Lots CSS design examples
Why Tables for Layout is Stupid ?

January 14

Commerical in Confidence (C) NItin Bhide

39
References
7.
8.
9.

W3Schools CSS Tutorial
Web Standards Project
ACID Tests and ACID3 Tests

January 14

Commerical in Confidence (C) NItin Bhide

40

More Related Content

PDF
Html / CSS Presentation
PPT
HTML Tags
PPTX
html5.ppt
PPT
cascading style sheet ppt
PDF
The JavaScript Programming Language
PPT
Span and Div tags in HTML
PPT
Css Ppt
PPT
Html project
Html / CSS Presentation
HTML Tags
html5.ppt
cascading style sheet ppt
The JavaScript Programming Language
Span and Div tags in HTML
Css Ppt
Html project

What's hot (20)

PPT
CSS Basics
PPTX
Basic HTML
ODP
PPTX
HTML to CSS Basics Exer 2.pptx
PPT
Intro to HTML5 audio tag
PPTX
PPTX
Web page concept final ppt
PPTX
Html, CSS & Web Designing
DOCX
Html project report12
PPT
Introduction to Cascading Style Sheets (CSS)
PPSX
HTML5 - Forms
PPT
Html presentation
PDF
Build a Website Using HTML + CSS
PDF
Html 5 New Features
PPTX
HTML/HTML5
PDF
Basic Html Notes
PPTX
Flutter for web
DOCX
Practical file on web technology(html)
PPT
CSS for Beginners
CSS Basics
Basic HTML
HTML to CSS Basics Exer 2.pptx
Intro to HTML5 audio tag
Web page concept final ppt
Html, CSS & Web Designing
Html project report12
Introduction to Cascading Style Sheets (CSS)
HTML5 - Forms
Html presentation
Build a Website Using HTML + CSS
Html 5 New Features
HTML/HTML5
Basic Html Notes
Flutter for web
Practical file on web technology(html)
CSS for Beginners
Ad

Similar to CSS Basics (20)

PPT
Web design-workflow
PDF
PPT
Supplement web design
PPTX
Css for Development
KEY
The web standards gentleman: a matter of (evolving) standards)
PDF
Evolution of CSS
PPTX
Web Development basics with WordPress
PDF
Professional Css
PDF
Styling Your Web Pages with Cascading Style Sheets / EDU course / University ...
PPTX
Mastering CSS for Backend Developers.pptx
PDF
Intro to html, css & sass
PPT
PPTX
intro_To_HTML_and__CSS_using_presentation.pptx
PPT
New Css style
PPTX
Html,CSS & UI/UX design
PDF
JavaScript 设计模式
PDF
[Web开发Css系列].Apress.Pro.Css.Techniques.Nov.2006
PDF
Training report on web developing
PDF
CSS: The Definitive Guide, 5th Edition (Early Release) Eric Meyer
PPT
Web design-workflow
Supplement web design
Css for Development
The web standards gentleman: a matter of (evolving) standards)
Evolution of CSS
Web Development basics with WordPress
Professional Css
Styling Your Web Pages with Cascading Style Sheets / EDU course / University ...
Mastering CSS for Backend Developers.pptx
Intro to html, css & sass
intro_To_HTML_and__CSS_using_presentation.pptx
New Css style
Html,CSS & UI/UX design
JavaScript 设计模式
[Web开发Css系列].Apress.Pro.Css.Techniques.Nov.2006
Training report on web developing
CSS: The Definitive Guide, 5th Edition (Early Release) Eric Meyer
Ad

More from Nitin Bhide (13)

PDF
2nd Techathon in Geometric - 27/28 Feb 2015
PPTX
Do/Doing/Done Is NOT Kanban
PPTX
Object Oriented Containers - Applying SOLID Principles to Docker/Container De...
PPTX
Daily Habits Of Highly Agile Developers
PPTX
DevOps - Understanding Core Concepts
PPTX
Collected Wisdom
PPTX
DevOps - Understanding Core Concepts (Old)
PPTX
Fundamental Principles of Software Development
PPTX
Agile Mindset and Its Implications - My Understanding
PPTX
GUI patterns : My understanding
PPTX
Code Review Checklist
PPTX
Iterator - a powerful but underappreciated design pattern
PPTX
Common Sense Software Development
2nd Techathon in Geometric - 27/28 Feb 2015
Do/Doing/Done Is NOT Kanban
Object Oriented Containers - Applying SOLID Principles to Docker/Container De...
Daily Habits Of Highly Agile Developers
DevOps - Understanding Core Concepts
Collected Wisdom
DevOps - Understanding Core Concepts (Old)
Fundamental Principles of Software Development
Agile Mindset and Its Implications - My Understanding
GUI patterns : My understanding
Code Review Checklist
Iterator - a powerful but underappreciated design pattern
Common Sense Software Development

Recently uploaded (20)

PDF
solutions_manual_-_materials___processing_in_manufacturing__demargo_.pdf
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PPTX
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
PPTX
Big Data Technologies - Introduction.pptx
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PPTX
Telecom Fraud Prevention Guide | Hyperlink InfoSystem
PDF
madgavkar20181017ppt McKinsey Presentation.pdf
PDF
CIFDAQ's Market Insight: SEC Turns Pro Crypto
PDF
How Onsite IT Support Drives Business Efficiency, Security, and Growth.pdf
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Dropbox Q2 2025 Financial Results & Investor Presentation
PDF
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
KodekX | Application Modernization Development
PPTX
Cloud computing and distributed systems.
PPTX
MYSQL Presentation for SQL database connectivity
PDF
Transforming Manufacturing operations through Intelligent Integrations
PPTX
Understanding_Digital_Forensics_Presentation.pptx
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
AI And Its Effect On The Evolving IT Sector In Australia - Elevate
solutions_manual_-_materials___processing_in_manufacturing__demargo_.pdf
Advanced methodologies resolving dimensionality complications for autism neur...
Effective Security Operations Center (SOC) A Modern, Strategic, and Threat-In...
Big Data Technologies - Introduction.pptx
“AI and Expert System Decision Support & Business Intelligence Systems”
Telecom Fraud Prevention Guide | Hyperlink InfoSystem
madgavkar20181017ppt McKinsey Presentation.pdf
CIFDAQ's Market Insight: SEC Turns Pro Crypto
How Onsite IT Support Drives Business Efficiency, Security, and Growth.pdf
Diabetes mellitus diagnosis method based random forest with bat algorithm
Dropbox Q2 2025 Financial Results & Investor Presentation
Bridging biosciences and deep learning for revolutionary discoveries: a compr...
Review of recent advances in non-invasive hemoglobin estimation
KodekX | Application Modernization Development
Cloud computing and distributed systems.
MYSQL Presentation for SQL database connectivity
Transforming Manufacturing operations through Intelligent Integrations
Understanding_Digital_Forensics_Presentation.pptx
Per capita expenditure prediction using model stacking based on satellite ima...
AI And Its Effect On The Evolving IT Sector In Australia - Elevate

CSS Basics

  • 2. What is CSS ?  What is a ‘Style Sheet’ ?  January 14 Why ‘Cascading’ ? Commerical in Confidence (C) NItin Bhide 2
  • 3. Structured Document  The content of Structured documents can be reused in many contexts and presented in various ways  A structured document is an electronic document where some method of embedded coding (i.e. markup) is used to give the whole, and parts, of the document various structural meanings according to a schema.  SGML pioneered the concept of structured documents January 14 Commerical in Confidence (C) NItin Bhide 3
  • 4. Structured Documents  SGML was based on two novel concepts 1. 2.  Markup should describe a document's structure and other attributes. It should not specify the processing to be performed on it. This way descriptive markup needs to be done only once, and will suffice for future processing. Markup should be rigorous so that the techniques available for processing rigorously-defined objects like programs and databases can be used for processing documents as well. For example, generating documents of various quality, automatically generating titles and indices, etc. DTD (Document Type Definition) defines the ‘schema’ (or meaning of each structural element). January 14 Commerical in Confidence (C) NItin Bhide 4
  • 5. Structured Documents  Most widely used structured document formats ◦ HTML, XML, SVG, XUL etc  XML ◦ The W3C XML (Extensible Markup Language) is a profile (subset) of SGML ◦ It is designed to ease the implementation of the parser compared to a full SGML parser, ◦ XML is primarily designed for use on the World Wide Web ◦ Applications of XML include XHTML, XQuery, XSLT, XForms, XPointer, JSP, SVG, RSS, Atom, XML-RPC, Semantic Web, and SOAP. January 14 Commerical in Confidence (C) NItin Bhide 5
  • 6. What is a Style Sheet ? For content in structured documents to be presented, a set of stylistic rules must be applied.  Typical Stylistic rules describe  ◦ Colors, ◦ Fonts, ◦ Layout  A collection of stylistic rules is called a style sheet.  Different style sheets can be attached to the logical structure to produce different presentations. ◦ For example, how content will be when printed, when viewed on computer, in-voice, for Braile etc. January 14 Commerical in Confidence (C) NItin Bhide 6
  • 7. Why ‘Cascading’ ?  CSS specifies a priority scheme to determine which style rules apply if more than one rule matches against a particular element.  In this so-called cascade, priorities or weights are calculated and assigned to rules, so that the results are predictable. January 14 Commerical in Confidence (C) NItin Bhide 7
  • 8. CSS – Some history  CSS Level 1 : ◦ Initial Release. ◦ 17 December 1996; 15 years ago  CSS Level 2 : ◦ Published in May 1998 ◦ Superset of Level 1  CSS Level 3: ◦ CSS3 is divided into several separate documents called "modules". ◦ The earliest CSS3 drafts published in June 1999. January 14 Commerical in Confidence (C) NItin Bhide 8
  • 9. CSS Structure - Rule A style sheet consists of a list of rules. Each rule or rule-set consists of one or more selectors and a declaration block. January 14 Commerical in Confidence (C) NItin Bhide 9
  • 10. CSS Structure – Declaration Block consists of a list of declarations in braces. Each declaration itself consists of a property, a colon (:), a value. If there are multiple declarations in a block, a semi-colon (;) must be inserted to separate each declaration. January 14 Commerical in Confidence (C) NItin Bhide 10
  • 11. CSS Structure : Selectors are used to declare which of the markup elements a style applies to, a kind of match expression. Selectors may apply to all elements of a specific type (e.g. class), or only those elements that match a certain attribute (e.g. id); Elements may be matched depending on how they are placed relative to each other in the markup code, or on how they are nested within the DOM. January 14 Commerical in Confidence (C) NItin Bhide 11
  • 12. Cascade scheme (priority scheme) High  Author styles (provided by the web page author): ◦ Inline styles, inside the HTML document, style information on a single element, specified using the "style" attribute ◦ Embedded style, blocks of CSS information inside the HTML itself ◦ External style sheets, i.e., a separate CSS file referenced from the document  User style: ◦ A local CSS file the user specifies with a browser option, which acts as an override applied to all documents  User agent (browser) style: ◦ Default styles applied by the user agent, i.e., the browser's default settings for element presentation ◦ Each browser has slightly different defaults for various elements Low January 14 Commerical in Confidence (C) NItin Bhide 12
  • 13. CSS Advantages Flexibility Separation of content from presentation • CSS facilitates publication of content in multiple presentation formats based on nominal parameters. Nominal parameters include • explicit user preferences, • different web browsers, • the type of device being used to view the content (a desktop computer or mobile Internet device), • the geographic location of the user and many other variables. Site-wide consistency • a global style sheet can be used to affect and style elements site-wide. • If the situation arises that the styling of the elements should need to be changed or adjusted, these changes can be made by editing rules in the global style sheet. • Before CSS, this sort of maintenance was more difficult, expensive and timeconsuming. January 14 Commerical in Confidence (C) NItin Bhide 13
  • 14. CSS Advantages Reduced Bandwidth • A stylesheet specifies the style once for a range of HTML elements selected by class, type or relationship to others. • This is much more efficient than repeating style information inline for each occurrence of the element. • An external stylesheet is usually stored in the browser cache, and can therefore be used on multiple pages without being reloaded, further reducing data transfer over a network. Page reformatting • With a simple change of one line, a different style sheet can be used for the same page. • This has advantages for accessibility, as well as providing the ability to tailor a page or site to different target devices. Furthermore, devices not able to understand the styling still display the content. January 14 Commerical in Confidence (C) NItin Bhide 14
  • 15. CSS BROWSER SUPPORT January 14 Commerical in Confidence (C) NItin Bhide 15
  • 16. Browser Support  Features supported ◦ Feature support of various browser and their version is documented on wikipedia ◦ Comparison of CSS Layout Engines  Different User Agent styles: ◦ Default values of various elements like fonts, colors, layouts etc. ◦ Yahoo ‘reset.css’ January 14 Commerical in Confidence (C) NItin Bhide 16
  • 17. ACID Tests Testpages Developed by ‘Web Standard Project’.  ACID 2 focuses mainly on CSS.  ACID3 tests DOM and Javascript as well.  Mainly developed by Ian Hickson (Google employee)  Test pages are available at http://acidtests.org  January 14 Commerical in Confidence (C) NItin Bhide 17
  • 18. CSS Frameworks Pre-prepared libraries That allow for easier, more standardscompliant styling of web pages  Minimize the browser specific variations  usually incorporated as external .css sheets referenced in the HTML <head>  Included before ‘custom css’.    For Example ◦ Yahoo CSS Grid, reset.css ◦ BluePrint (by Googlers) ◦ 960 Grid January 14 Commerical in Confidence (C) NItin Bhide 18
  • 19. CSS BOX MODEL & POSITIONING January 14 Commerical in Confidence (C) NItin Bhide 19
  • 20. CSS Box Model Margin Border • Clears an area around the border. • The margin does not have a background color, • it is completely transparent January 14 • A border that goes around the padding and content. • The border is affected by the background color of the box Padding • Clears an area around the content. • The padding is affected by the background color of the box Commerical in Confidence (C) NItin Bhide Content • The content of the box, where text and images appear 20
  • 21. Positioning Schemes CSS 2.1 defines three positioning schemes: Normal flow • Inline items are laid out in the same way as the letters in words in text, one after the other across the available space until there is no more room, then starting a new line below. • Block items stack vertically, like paragraphs and like the items in a bulleted list. • Normal flow also includes relative positioning of block or inline items, and run-in boxes. Floats • A floated item is taken out of the normal flow and shifted to the left or right as far as possible in the space available. • Other content then flows alongside the floated item. Absolute positioning • An absolutely positioned item has no place in, and no effect on, the normal flow of other items. • It occupies its assigned position in its container independently of other items January 14 Commerical in Confidence (C) NItin Bhide 21
  • 22. Position Static • The default value places the item in the normal flow Relative • The item is placed in the normal flow, and then shifted or offset from that position. • Subsequent flow items are laid out as if the item had not been moved. Absolute • Specifies absolute positioning Fixed • The item is absolutely positioned in a fixed position on the screen even as the rest of the document is scrolled If an item is positioned in any way other than static, then the further properties top, bottom, left, and right are used to specify offsets and positions. January 14 Commerical in Confidence (C) NItin Bhide 22
  • 23. Float & Clear Notes • Absolutely positioned or fixed items cannot be floated. • Other elements normally flow around floated items, unless they are prevented from doing so by their clear property. Float:left • Floats to the left of the line that it would have appeared in; other items may flow around its right side Float:right • Floats to the right of the line that it would have appeared in; other items may flow around its left side Float:none • Removes the float property from an item January 14 Commerical in Confidence (C) NItin Bhide 23
  • 24. CSS LAYOUTS January 14 Commerical in Confidence (C) NItin Bhide 24
  • 25. Table layouts Vs CSS Layouts Table Layouts • mixes presentational data in with content. • Needs to create separate pages for different ‘representations’ like print, on screen, mobile devices, voice etc • Hard to maintain visual consistency across pages • Larger page download sizes. January 14 Commerical in Confidence (C) NItin Bhide CSS Layouts • Smaller page sizes, CSS file is shared across • Separates presentation data and content • Different css defines how page will be displayed on various ‘representations’ like print, on screen, mobile devices etc. • Easy to maintain visual consistency across pages. • Redesigns are easier and less expensive 25
  • 26. Table layouts Vs CSS Layouts Table Layout • Looks nearly same in all browsers • Works well in HTML emails • Hence Minimize the table use. • Easy to get ‘correct’ fluid layout January 14 Commerical in Confidence (C) NItin Bhide CSS Layout • Needs some care to ensure that results are same in all browsers. • Because of ‘casacading’ nature, difficult to find offending css rule. • Small change can break multiple pages. • Don’t work well in HTML emails. • Take correct to get the correct results in ‘fluid’ layouts 26
  • 27. DESIGNING WITH CSS January 14 Commerical in Confidence (C) NItin Bhide 28
  • 28. Steps to Design with CSS Identify the types of content/information in your site as a whole • • • • • • Identify the sections and pages of your site. Product information Pricing information Company information Investor information Shopping cart User forums and so on January 14 Commerical in Confidence (C) NItin Bhide 29
  • 29. Steps to Design with CSS Analyze existing markup for presentational HTML that can be replaced with structural markup Breaking down your pages with logical divisions of content. • • • • • • Main navigation Sub navigation Headers and footers Content Related information Other January 14 • <font> tags • the <b> and <br> markup. • presentational markup for tables (bgcolor, background, and the like). Commerical in Confidence (C) NItin Bhide 30
  • 30. Steps to Design With CSS Replace presentational tags with structural markup • Think about the structure of your document! • What is the most important header? Mark it up with an <h1> tag. • Mark your subheads with <h2> tags and so on. • Mark up paragraphs with <p> tags. • Mark up your navigation as unordered lists. • Choose a DOCTYPE and use it. (Use XHTML transitional, if you really want to be ‘strict’ use XHTML strict.) January 14 Divide your page into logical divs • Put your main navigation into a div with an id of mainnav; • put your subnav inside a div with an id or class of subnav, • put your footer in a <div id="footer">, • wrap your content inside a <div id="content">. • Page doesn't look like much now, but once you start adding rules to your style sheets, things will get better quickly. Commerical in Confidence (C) NItin Bhide 31
  • 31. Steps in Designing with CSS It’s time to start writing your CSS • At the begining, give each div a border. For example, div {border: 1px dotted gray; padding: .5em} This will help you see where they begin and end, and also whether or not you have any nesting going on. • Write your CSS for element selectors first (<html>, <body>, <p>, <h1>, <h2>, <ul>, <li>, etc.) • Use contextual or descendant selectors as much as possible. This will keep your markup much cleaner. For example, #subnav li {border: 1px solid black; padding: .5em; display: inline} will only affect list items that occur within your subnav div. • Test in as many browsers as you can and get your friends to test it in their browsers. January 14 Commerical in Confidence (C) NItin Bhide 32
  • 32. CSS TIPS January 14 Commerical in Confidence (C) NItin Bhide 33
  • 33. CSS Tips Minimize use of tables.  Make sure that ids are unique.  ◦ CSS just assumes Ids are unique. ◦ And incase of multiple ids, apply the rule on first id found  Donot use external or internal style sheets in HTML emails. Use ‘style’ attribute on individual element. January 14 Commerical in Confidence (C) NItin Bhide 34
  • 34. CSS Limitations Poor controls for flexible layouts • CSS is still at heart a styling language (for fonts, colours, borders and other decoration), not a layout language (for blocks with positions, sizes, margins, and so on). • While new additions to CSS3 provide a stronger, more robust feature-set for layout • Still These limitations mean that creating fluid layouts generally requires handcoding of CSS. • Hence key feature of Many CSS Framework, is ‘Grid Layouts’. • It has held back the development of a standards-based WYSIWYG editor. Selectors are unable to ascend • CSS offers no way to select a parent or ancestor of an element that satisfies certain criteria. • An advanced selector scheme (like XPath) would enable more sophisticated style sheets. • The main reasons for the CSS Working Group rejecting proposals for parent selectors are related to browser performance and incremental rendering issues. January 14 Commerical in Confidence (C) NItin Bhide 35
  • 35. CSS Limitations Vertical control limitations • Vertical placement is frequently unintuitive, convoluted, or impossible. • Simple tasks (such as centering an element vertically or getting a footer to be placed no higher than bottom of viewport) either require complicated and unintuitive style rules, or simple but widely unsupported rules. Absence of expressions • There is currently no ability to specify property values as simple expressions (such as margin-left: 10% - 3em + 4px;). • This would be useful in a variety of cases, such as calculating the size of columns subject to a constraint on the sum of all columns. • However, a working draft with a calc() value to address this limitation has been published by the CSS WG. • Internet Explorer versions 5 to 7 support a proprietary expression() statement, It statement is no longer supported from Internet Explorer 8 onwards, January 14 Commerical in Confidence (C) NItin Bhide 36
  • 36. CSS Limitations Lack of column declaration • While possible in current CSS 3 (using the column-count module) • Layouts with multiple columns can be complex to implement in CSS2.1. • With CSS 2.1, the process is often done using floating elements, which are often rendered differently by different browsers, different computer screen shapes, and different screen ratios set on standard monitors. Cannot explicitly declare new scope independently of position • Scoping rules for properties such as z-index look for the closest parent element with a position:absolute or position:relative attribute. • This odd coupling has undesired effects such as it is impossible to avoid declaring a new scope when one is forced to adjust an element's position, preventing one from using the desired scope of a parent element. Pseudo-class dynamic behavior not controllable • CSS implements pseudo-classes that allow a degree of user feedback by conditional application of alternate styles. • One CSS pseudo-class, ":hover", is dynamic (equivalent of javascript "onmouseover") and has potential for abuse (e.g., implementing cursor-proximity popups), • but CSS has no ability for a client to disable it (no "disable"-like property) or limit its effects (no "nochange"-like values for each property). January 14 Commerical in Confidence (C) NItin Bhide 37
  • 37. REFERENCES January 14 Commerical in Confidence (C) NItin Bhide 38
  • 38. References 1. 2. 3. 4. 5. 6. CSS Filters (or CSS hacks) CSS Limitations CSS Feature Support comparison table CSS contents and browser compatibility CSS Zen Garden. Lots CSS design examples Why Tables for Layout is Stupid ? January 14 Commerical in Confidence (C) NItin Bhide 39
  • 39. References 7. 8. 9. W3Schools CSS Tutorial Web Standards Project ACID Tests and ACID3 Tests January 14 Commerical in Confidence (C) NItin Bhide 40

Editor's Notes

  • #14: Use details from http://en.wikipedia.org/wiki/Cascading_Style_Sheets#Advantages
  • #26: From Why tables for Layout is stupid : http://www.hotdesign.com/seybold/
  • #29: From Why tables for Layout is stupid : http://www.hotdesign.com/seybold/