SlideShare a Scribd company logo
Displaying XML Documents Using CSS and XSL Chapter 3
Review-1 A well-formed document is one that conforms to the basic rules of XML. A valid document is well formed and is also validated against a DTD. The DTD specifies the grammatical structure of an XML document, thereby allowing XML parsers to understand and interpret the document’s contents. The use of the SYSTEM keyword indicates to the parser that this is an external declaration, and that the set of rules for this XML document can be found in a specified file. EMPTY element-content type specifies that the element has no child elements or character data.
Review-2 #CDATA means that the element contains character data that is not to be parsed by a parser. #PCDATA means that the element contains data that is to be parsed by a parser.  Specifying a default value for an attribute in the DTD ensures that the attribute will get a value, even if the author of the XML document does not include it. Specifying the value of an attribute as ‘Implied’ means that the particular attribute is not mandatory and can be specified in the XML document.  Specifying the value of an attribute as ‘Required’ means that the particular attribute is mandatory (that is, its value must be provided in the XML document).
Review-3 ‘ ID’ is the identifier type, and should be unique. This attribute value is used to search for a particular instance of an element. Each element can only have one attribute of type ID.  A DTD can be either  External  or Internal.   Entities allow us to create an alias to some large piece of text, so that, in the document, the same piece of text can be referred to, simply by referring to the alias.  Namespaces allow us to combine documents from different sources, and be able to identify which elements or attributes come from which source.
Objectives Display an XML document in a browser Identify the style rules of CSS Discuss different patterns and templates of XSL Apply different styles to XML elements using CSS and XSL Transform XML documents into HTML documents using XSLT Identify the differences between CSS and XSL
Style Sheets - 1 An XML document can be displayed in different formats in different display devices such as computer, printer, and the like. Document to be displayed
Style Sheets - 2 A Style sheet is a set of instructions to display the documents: It separates presentation layer from the content data of the document. A single XML document can have multiple style sheets Style   sheets Data Presentation Layer
Style Sheets - 3 A few style sheets available in the market include: CSS- Cascading Style Sheets XSL-eXtensible Style sheet Language DSSL-Document Style Semantics and    Specification Language
Uses of CSS and XSL Cascading style sheet is used to   manipulate Visibility of an element Positioning and sizing of elements Colors and Background Font and Text Spacing XSL is used for formatting and converting documents written in one XML DTD into another DTD.
XML and Style Sheets XML documents are plain text files. The style sheets are used to format and view the XML document. Two commonly used style sheets with XML are: CSS - an extension of HTML XSL - an XML specific styling language
Working of XML XML File CSS (XML + CSS) aware Browser Formatted Document
Displaying an XML Document Using CSS -1 XML document <?xml version='1.0'?> <?xml-stylesheet type=&quot;text/css&quot; href=&quot;hello.css&quot;?> <xsampdoc> <greeting>Hello, <extension>there!</extension> </greeting>   <answer>   <ans>Good <extension>morning!</extension> </ans>   <question> How are you?  </question>  </answer> </xsampdoc>
Displaying an XML Document Using CSS -1 Xsampdoc {  margin-top:.7in; margin-bottom: .7in; margin-left:1.5in; margin-right:1in; color: navy; background-color:white; display: block  } greeting {  display:block; font-family: Arial, Helvetica, sans-  serif;font-size: 32pt; width: 30em; color: red  } question {  display:block; font-size: x-large; color: black;  } answer.ans  { display : block; font-size: 20pt; color: blue }   The CSS document for the XML document
Displaying an XML Document Using CSS -2 OUTPUT
CSS Style Rules The Syntax for style rules in a Cascading Style Sheet is:  Selector{declaration} The selector identifies the tag to which the style applies. The declaration provides the style rules applied to the selector. This is referred as ‘Simple Selector’. Example:  greeting {display:block;font-family: Arial, Helvetica,sans-serif; font-size: 32pt;  width: 30em;  color:  red }
Multiple Selector Used to apply the same style rule for different elements Syntax: selector,selector…….{declaration} Example greeting,question {font-family: sans-serif;  font-size: 32pt;  } Style Rule Selector 1 Selector 2 The same Style Rule is being used by Selector1 and Selector2
Contextual Selectors -1 It helps us to differentiate between the different occurrence of a tag. MADE IN U.S.A tag Occurrence 1 Occurrence 2 Occurrence 1 tag([declaration]} Occurrence 2 tag([declaration]} Conceptual Selector
Contextual Selectors -2 Example: <xsampdoc> <greeting>Hello! <extension>there</extension></greeting> <answer> <ans>Fine<extension>here</extension></ans> <ans>Thank you.</ans> </answer> </xsampdoc>   Contextual Selectors to differentiate between the different occurrences of <extension> greeting extension{[declarations]} answer ans extension{[declaration]}
Characters used in CSS Separates multiple selectors in a style rule   Comma , Identifies selector context   Period . Separates multiple property/value combinations   Semicolon ; Separates property and its value   Colon : Function Name Character
Linking the CSS to XML The Cascading style sheet has to be referenced in the XML document. We use a processing instruction to do so. Syntax: <?xml-stylesheet type=“text/css”  href=“url”?> Example <?xml-stylesheettype=&quot;text/css“  href=&quot;hello.css&quot;?>
Properties and Values A value of the CSS styling property may be a string, a number with a unit, an integer, or a color value. Values can be absolute or relative, inheritable or non-inheritable. Example Absolute value P{margin-left:3cm;} A margin of 3 centimeter is created irrespective of the margin size. Example Relative value P{margin-left:10%} A margin of 10% of the width of the page is created.
Color Values XML supports the following color values:   Gray White Red Short form #888 #FFF #F00 Decimal Integer rgb(136,136,136) rgb(255,255,255) rgb(255,0,0) Percentage rgb(55%,55%,55%) rgb(100%,100%,100%) rgb(100%,0,0)
Formatting the Text - 1 The CSS properties allow to specify the font in which an element will be displayed, its size and color.  <absolute-size> and <relative-size>  keywords are used with font properties <absolute-size> xx-small x-small small medium <relative-size> large smaller
Formatting the Text - 2 The different font properties that can be set are: font-family font-size font-style font-weight font-variant Font
Boxes -1 Blocks of text can be contained in a box. The following three properties apply to the boxes: Margins Border Padding Padding is the distance between the contents of the adjacent box. Margin is the distance between the border and the outer edge of the adjacent box, or between the border and its containing box.
Boxes -2 Border
Margins, Border and Padding The padding property is used to specify the distance or space between the border and its contents.  Boxes margin-top margin-bottom margin-left margin-right margin Margins Border border-top border-bottom border-left border-right border padding-bottom padding-top padding-right padding-left padding Padding
Controlling Layout The CSS layout properties can control the box on the screen.  The boxes can be overlapped using the z-index property. A paragraph that is two inches by one inch and with a scroll bar is displayed
XSL It is a style sheet application created specifically for XML. Features of XSL include: It provides a transformation language (XSLT). XSL can be used as a formatting language. XSL can be used to sort  and filter. XSL can be used for pattern matching to find records.
XSL  - 2 XML Document XSL HTML document displayed in the Web HTML CSS
Example for XSL  The XSL style sheet code <html>  <head>  <title>Icons In Cricket</title>  </head>  <body>  <h2>Icons In Cricket</h2>  <table border=&quot;2&quot; cellpadding=&quot;3&quot;>  <tr>  <td>Player</td>    <td>No. Of Catches</td>  <td>No. Of 100's</td>  <td>No. Of 50's</td>  </tr>  <xsl:for-each select=&quot;cricket/player&quot; order-by =&quot;-catches&quot;> <tr>  <td><xsl:value-of select=&quot;name&quot;/></td>  <td><xsl:value-of select=&quot;no_50&quot;/></td> <td><xsl:value-of select=&quot;no_100&quot;/></td>  <td><xsl:value-of select=&quot;catches&quot;/></td> </tr>  </xsl:for-each>  </table>  </body>  </html>
Patterns The patterns supported in XSL are: Sorting Operators Filtering Letters after sorting
Sorting The default sorting is ascending order.  The ‘-’ sign is used to sort in descending order. The chart is organized in the descending order of catches
Operators XSL supports the se operators: / ./ // .// * @ = /*/name */* @* //name
Filtering and Logical Operators Filter operations can contain expression such as Boolean expression, AND, OR, and NOT expressions The different logical operators that can be used  are: Operator Description AND Logical and OR Logical or NOT Negation = Equal != Not equal > Greater than < Less than >= Greater than or equal to <= Less than or equal
Templates Templates are the instructions in an XSL style sheet, which control the conversion of element and its content. It is represented by  <xsl:template>…</xsl:template> It is applied with the  <xsl:apply-templates/>  element The template has two parts: The matching  part The processing part  Matching part Processing part
Types of Matching Matching Matching by name Matching by ancestry Matching several names Matching the root Wildcard matches Matching by ID Matching by attributes
Handling Expressions XSL supports five types of Expressions. These are: Node Sets Booleans Strings Numbers Result Tree Fragments
Switching Styles Data Islands 1 XML document Data Islands 2 Data Islands 3 XML document with XSL style sheet 1 XML document with XSL style sheet 2 XML document with XSL style sheet 3
xsl:import and xsl:include Style sheets created by other developers can be imported using the xsl:import   The syntax for importing style sheets is: <xsl:import href= ‘another stylesheet.xsl’/> <xsl:import href= ‘another stylesheet1.xsl’/> All the different style sheets imported are arranged in an import tree.   A new node is created in the import tree when a style sheet is imported
Difference Between XSL and CSS It transforms XML into structures such as lists or tables It does not change the structure of the document XSLT lets us to map a certain pattern in the source document CSS determines the visual appearance of a page XSL provides means of transforming of XML documents CSS work by assigning a set of display properties to an HTML element
Summary-1 XML is portable. An XML document can be sent from one system to another, and even from application to application, without modifying the content. A style sheet is a set of instructions to display documents.  Style sheets can be written in several languages. Two of these are:
Cascading Style Sheets  (CSS), an extension of HTML  eXtensible Stylesheet Language  (XSL), an XML specific styling language  The selector identifies the tag to which the style applies, and the declaration provides the style rules applied, to the selector .
Summary-2 The list of selectors includes Simple selectors, Contextual selectors and Multiple selectors. Contextual Selectors help to differentiate between the different occurrences of a tag. The Multiple Selector is used to assign the same style rule to different elements. One declaration can be applied to several selectors. A block of text can be contained in a box, and this box can then be placed on the browser. The three properties that apply to the boxes are: margins, borders and padding
The CSS layout properties can control the layout of the box on the screen.  Boxes can be overlapped using the z-index property. This specifies the height and width for a box. XSL is a style sheet language created specifically for XML. It is used to convert XML documents into HTML. Cascading style sheets are applied to the resulting HTML documents for display on the web.
Summary-3 The instructions that control how an element and its content should be converted in an XSL style sheet, are called templates. XSL provides support for the following patterns: Sorting Operators Filtering A typical template element looks like this: <xsl:template match = &quot;myElement&quot;> Types of Matching Matching by attribute Matching by ID Matching by wildcard  Matching by root Matching by name

More Related Content

What's hot (20)

PPTX
XML, DTD & XSD Overview
Pradeep Rapolu
 
PPTX
Json
Steve Fort
 
PPTX
XSLT
Kamal Acharya
 
PPTX
XML Schema
Kumar
 
PPTX
HTML: Tables and Forms
BG Java EE Course
 
PPT
Basic perl programming
Thang Nguyen
 
PPTX
Xml schema
Akshaya Akshaya
 
PPTX
Introduction to CSS
Folasade Adedeji
 
PPTX
Html and css presentation
umesh patil
 
PPTX
C# Delegates
Raghuveer Guthikonda
 
PPTX
css.ppt
bhasula
 
PPTX
Css selectors
Parth Trivedi
 
PPTX
Html and css
Sukrit Gupta
 
PPT
Html Ppt
Hema Prasanth
 
PPTX
DHTML
Ravinder Kamboj
 
PDF
Xml schema
Dr.Saranya K.G
 
PDF
Introduction to CSS3
Doris Chen
 
PPTX
DTD
Kamal Acharya
 
XML, DTD & XSD Overview
Pradeep Rapolu
 
XML Schema
Kumar
 
HTML: Tables and Forms
BG Java EE Course
 
Basic perl programming
Thang Nguyen
 
Xml schema
Akshaya Akshaya
 
Introduction to CSS
Folasade Adedeji
 
Html and css presentation
umesh patil
 
C# Delegates
Raghuveer Guthikonda
 
css.ppt
bhasula
 
Css selectors
Parth Trivedi
 
Html and css
Sukrit Gupta
 
Html Ppt
Hema Prasanth
 
Xml schema
Dr.Saranya K.G
 
Introduction to CSS3
Doris Chen
 

Viewers also liked (13)

PDF
Nếu con em vị nói lắp
Bình Trọng Án
 
PDF
Php & web server performace
Tuyển Đoàn
 
ODP
PHP Training: Module 1
hussulinux
 
PPT
Jaxb
Manav Prasad
 
DOCX
Xml material
prathap kumar
 
PDF
Tìm hiểu về NodeJs
Bình Trọng Án
 
PPTX
XSLT
Surinder Kaur
 
PPT
PHP Custom Web application development
Marion Welch
 
PPTX
XSLT
rpoplai
 
PPT
Introduction to XML
yht4ever
 
PDF
Template Design for SAGD
AVEVA Group plc
 
PPTX
Introduction to Web Architecture
Chamnap Chhorn
 
Nếu con em vị nói lắp
Bình Trọng Án
 
Php & web server performace
Tuyển Đoàn
 
PHP Training: Module 1
hussulinux
 
Xml material
prathap kumar
 
Tìm hiểu về NodeJs
Bình Trọng Án
 
PHP Custom Web application development
Marion Welch
 
XSLT
rpoplai
 
Introduction to XML
yht4ever
 
Template Design for SAGD
AVEVA Group plc
 
Introduction to Web Architecture
Chamnap Chhorn
 
Ad

Similar to Displaying XML Documents Using CSS and XSL (20)

PPT
5 xsl (formatting xml documents)
gauravashq
 
PPT
XML/XSLT
thinkahead.net
 
PPT
Xml by Luqman
Luqman Shareef
 
PPTX
xml.pptx
TilakaRt
 
PPT
Xml and Co.
Findik Dervis
 
PPTX
Extensible Markup Language(XML)_lecture.pptx
Abdul Jalil Tamjid
 
PPT
Xml sasidhar
Sasidhar Kothuru
 
PPTX
Xml
Yoga Raja
 
PPT
O9xml
Ergoclicks
 
PPT
Intro to xml
Tarun Jain
 
DOCX
Introduction to xml schema
Abhishek Kesharwani
 
PPT
Xml
guestcacd813
 
PPTX
Unit 5 xml (1)
manochitra10
 
PPTX
Xml andweb services
ayushagrawal464
 
PPT
Schema
Ergoclicks
 
PPT
O9schema
Ergoclicks
 
PPT
XML-Unit 1.ppt
ssuseree7dcd
 
PPT
Xml
Vishwa Mohan
 
PDF
M.FLORENCE DAYANA WEB DESIGN -Unit 5 XML
Dr.Florence Dayana
 
PPTX
Xml PPT
Jasbeer Chauhan
 
5 xsl (formatting xml documents)
gauravashq
 
XML/XSLT
thinkahead.net
 
Xml by Luqman
Luqman Shareef
 
xml.pptx
TilakaRt
 
Xml and Co.
Findik Dervis
 
Extensible Markup Language(XML)_lecture.pptx
Abdul Jalil Tamjid
 
Xml sasidhar
Sasidhar Kothuru
 
O9xml
Ergoclicks
 
Intro to xml
Tarun Jain
 
Introduction to xml schema
Abhishek Kesharwani
 
Unit 5 xml (1)
manochitra10
 
Xml andweb services
ayushagrawal464
 
Schema
Ergoclicks
 
O9schema
Ergoclicks
 
XML-Unit 1.ppt
ssuseree7dcd
 
M.FLORENCE DAYANA WEB DESIGN -Unit 5 XML
Dr.Florence Dayana
 
Ad

More from Bình Trọng Án (18)

PDF
A Developer's Guide to CQRS Using .NET Core and MediatR
Bình Trọng Án
 
PDF
Bài giảng chuyên đề - Lê Minh Hoàng
Bình Trọng Án
 
PDF
Clean code-v2.2
Bình Trọng Án
 
PDF
Các câu chuyện toán học - Tập 3: Khẳng định trong phủ định
Bình Trọng Án
 
PDF
Luyện dịch Việt Anh
Bình Trọng Án
 
DOCX
2816 mcsa--part-11--domain-c111ntroller--join-domain-1
Bình Trọng Án
 
DOC
LinQ to XML
Bình Trọng Án
 
PDF
Chuyên đề group policy
Bình Trọng Án
 
PPT
Chapter 4 xml schema
Bình Trọng Án
 
DOCX
Tỷ lệ vàng - một phát hiện vĩ đại của hình học
Bình Trọng Án
 
PPT
Attributes & .NET components
Bình Trọng Án
 
DOCX
Ajax Control ToolKit
Bình Trọng Án
 
PPT
Linq intro
Bình Trọng Án
 
DOCX
Sách chữa tật nói lắp Version 1.0 beta
Bình Trọng Án
 
PPT
Mô hình 3 lớp
Bình Trọng Án
 
PPT
Xsd examples
Bình Trọng Án
 
PPT
Introduction to XML
Bình Trọng Án
 
A Developer's Guide to CQRS Using .NET Core and MediatR
Bình Trọng Án
 
Bài giảng chuyên đề - Lê Minh Hoàng
Bình Trọng Án
 
Clean code-v2.2
Bình Trọng Án
 
Các câu chuyện toán học - Tập 3: Khẳng định trong phủ định
Bình Trọng Án
 
Luyện dịch Việt Anh
Bình Trọng Án
 
2816 mcsa--part-11--domain-c111ntroller--join-domain-1
Bình Trọng Án
 
LinQ to XML
Bình Trọng Án
 
Chuyên đề group policy
Bình Trọng Án
 
Chapter 4 xml schema
Bình Trọng Án
 
Tỷ lệ vàng - một phát hiện vĩ đại của hình học
Bình Trọng Án
 
Attributes & .NET components
Bình Trọng Án
 
Ajax Control ToolKit
Bình Trọng Án
 
Linq intro
Bình Trọng Án
 
Sách chữa tật nói lắp Version 1.0 beta
Bình Trọng Án
 
Mô hình 3 lớp
Bình Trọng Án
 
Xsd examples
Bình Trọng Án
 
Introduction to XML
Bình Trọng Án
 

Recently uploaded (20)

PPTX
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
PDF
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
DOCX
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
PDF
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
PDF
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
PDF
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
PDF
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
PDF
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
PDF
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
PDF
How do you fast track Agentic automation use cases discovery?
DianaGray10
 
PDF
"Beyond English: Navigating the Challenges of Building a Ukrainian-language R...
Fwdays
 
PDF
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
PDF
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
PDF
What’s my job again? Slides from Mark Simos talk at 2025 Tampa BSides
Mark Simos
 
PDF
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
DOCX
Python coding for beginners !! Start now!#
Rajni Bhardwaj Grover
 
PDF
Transcript: Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
PDF
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
PDF
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
PDF
“Voice Interfaces on a Budget: Building Real-time Speech Recognition on Low-c...
Edge AI and Vision Alliance
 
"Autonomy of LLM Agents: Current State and Future Prospects", Oles` Petriv
Fwdays
 
LOOPS in C Programming Language - Technology
RishabhDwivedi43
 
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
“NPU IP Hardware Shaped Through Software and Use-case Analysis,” a Presentati...
Edge AI and Vision Alliance
 
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
CIFDAQ Market Wrap for the week of 4th July 2025
CIFDAQ
 
Newgen 2022-Forrester Newgen TEI_13 05 2022-The-Total-Economic-Impact-Newgen-...
darshakparmar
 
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
How do you fast track Agentic automation use cases discovery?
DianaGray10
 
"Beyond English: Navigating the Challenges of Building a Ukrainian-language R...
Fwdays
 
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
What’s my job again? Slides from Mark Simos talk at 2025 Tampa BSides
Mark Simos
 
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
Python coding for beginners !! Start now!#
Rajni Bhardwaj Grover
 
Transcript: Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
Agentic AI lifecycle for Enterprise Hyper-Automation
Debmalya Biswas
 
The Rise of AI and IoT in Mobile App Tech.pdf
IMG Global Infotech
 
“Voice Interfaces on a Budget: Building Real-time Speech Recognition on Low-c...
Edge AI and Vision Alliance
 

Displaying XML Documents Using CSS and XSL

  • 1. Displaying XML Documents Using CSS and XSL Chapter 3
  • 2. Review-1 A well-formed document is one that conforms to the basic rules of XML. A valid document is well formed and is also validated against a DTD. The DTD specifies the grammatical structure of an XML document, thereby allowing XML parsers to understand and interpret the document’s contents. The use of the SYSTEM keyword indicates to the parser that this is an external declaration, and that the set of rules for this XML document can be found in a specified file. EMPTY element-content type specifies that the element has no child elements or character data.
  • 3. Review-2 #CDATA means that the element contains character data that is not to be parsed by a parser. #PCDATA means that the element contains data that is to be parsed by a parser. Specifying a default value for an attribute in the DTD ensures that the attribute will get a value, even if the author of the XML document does not include it. Specifying the value of an attribute as ‘Implied’ means that the particular attribute is not mandatory and can be specified in the XML document. Specifying the value of an attribute as ‘Required’ means that the particular attribute is mandatory (that is, its value must be provided in the XML document).
  • 4. Review-3 ‘ ID’ is the identifier type, and should be unique. This attribute value is used to search for a particular instance of an element. Each element can only have one attribute of type ID. A DTD can be either External or Internal. Entities allow us to create an alias to some large piece of text, so that, in the document, the same piece of text can be referred to, simply by referring to the alias. Namespaces allow us to combine documents from different sources, and be able to identify which elements or attributes come from which source.
  • 5. Objectives Display an XML document in a browser Identify the style rules of CSS Discuss different patterns and templates of XSL Apply different styles to XML elements using CSS and XSL Transform XML documents into HTML documents using XSLT Identify the differences between CSS and XSL
  • 6. Style Sheets - 1 An XML document can be displayed in different formats in different display devices such as computer, printer, and the like. Document to be displayed
  • 7. Style Sheets - 2 A Style sheet is a set of instructions to display the documents: It separates presentation layer from the content data of the document. A single XML document can have multiple style sheets Style sheets Data Presentation Layer
  • 8. Style Sheets - 3 A few style sheets available in the market include: CSS- Cascading Style Sheets XSL-eXtensible Style sheet Language DSSL-Document Style Semantics and Specification Language
  • 9. Uses of CSS and XSL Cascading style sheet is used to manipulate Visibility of an element Positioning and sizing of elements Colors and Background Font and Text Spacing XSL is used for formatting and converting documents written in one XML DTD into another DTD.
  • 10. XML and Style Sheets XML documents are plain text files. The style sheets are used to format and view the XML document. Two commonly used style sheets with XML are: CSS - an extension of HTML XSL - an XML specific styling language
  • 11. Working of XML XML File CSS (XML + CSS) aware Browser Formatted Document
  • 12. Displaying an XML Document Using CSS -1 XML document <?xml version='1.0'?> <?xml-stylesheet type=&quot;text/css&quot; href=&quot;hello.css&quot;?> <xsampdoc> <greeting>Hello, <extension>there!</extension> </greeting> <answer> <ans>Good <extension>morning!</extension> </ans> <question> How are you? </question> </answer> </xsampdoc>
  • 13. Displaying an XML Document Using CSS -1 Xsampdoc { margin-top:.7in; margin-bottom: .7in; margin-left:1.5in; margin-right:1in; color: navy; background-color:white; display: block } greeting { display:block; font-family: Arial, Helvetica, sans- serif;font-size: 32pt; width: 30em; color: red } question { display:block; font-size: x-large; color: black; } answer.ans { display : block; font-size: 20pt; color: blue } The CSS document for the XML document
  • 14. Displaying an XML Document Using CSS -2 OUTPUT
  • 15. CSS Style Rules The Syntax for style rules in a Cascading Style Sheet is: Selector{declaration} The selector identifies the tag to which the style applies. The declaration provides the style rules applied to the selector. This is referred as ‘Simple Selector’. Example: greeting {display:block;font-family: Arial, Helvetica,sans-serif; font-size: 32pt; width: 30em; color: red }
  • 16. Multiple Selector Used to apply the same style rule for different elements Syntax: selector,selector…….{declaration} Example greeting,question {font-family: sans-serif; font-size: 32pt; } Style Rule Selector 1 Selector 2 The same Style Rule is being used by Selector1 and Selector2
  • 17. Contextual Selectors -1 It helps us to differentiate between the different occurrence of a tag. MADE IN U.S.A tag Occurrence 1 Occurrence 2 Occurrence 1 tag([declaration]} Occurrence 2 tag([declaration]} Conceptual Selector
  • 18. Contextual Selectors -2 Example: <xsampdoc> <greeting>Hello! <extension>there</extension></greeting> <answer> <ans>Fine<extension>here</extension></ans> <ans>Thank you.</ans> </answer> </xsampdoc> Contextual Selectors to differentiate between the different occurrences of <extension> greeting extension{[declarations]} answer ans extension{[declaration]}
  • 19. Characters used in CSS Separates multiple selectors in a style rule Comma , Identifies selector context Period . Separates multiple property/value combinations Semicolon ; Separates property and its value Colon : Function Name Character
  • 20. Linking the CSS to XML The Cascading style sheet has to be referenced in the XML document. We use a processing instruction to do so. Syntax: <?xml-stylesheet type=“text/css” href=“url”?> Example <?xml-stylesheettype=&quot;text/css“ href=&quot;hello.css&quot;?>
  • 21. Properties and Values A value of the CSS styling property may be a string, a number with a unit, an integer, or a color value. Values can be absolute or relative, inheritable or non-inheritable. Example Absolute value P{margin-left:3cm;} A margin of 3 centimeter is created irrespective of the margin size. Example Relative value P{margin-left:10%} A margin of 10% of the width of the page is created.
  • 22. Color Values XML supports the following color values:   Gray White Red Short form #888 #FFF #F00 Decimal Integer rgb(136,136,136) rgb(255,255,255) rgb(255,0,0) Percentage rgb(55%,55%,55%) rgb(100%,100%,100%) rgb(100%,0,0)
  • 23. Formatting the Text - 1 The CSS properties allow to specify the font in which an element will be displayed, its size and color. <absolute-size> and <relative-size> keywords are used with font properties <absolute-size> xx-small x-small small medium <relative-size> large smaller
  • 24. Formatting the Text - 2 The different font properties that can be set are: font-family font-size font-style font-weight font-variant Font
  • 25. Boxes -1 Blocks of text can be contained in a box. The following three properties apply to the boxes: Margins Border Padding Padding is the distance between the contents of the adjacent box. Margin is the distance between the border and the outer edge of the adjacent box, or between the border and its containing box.
  • 27. Margins, Border and Padding The padding property is used to specify the distance or space between the border and its contents. Boxes margin-top margin-bottom margin-left margin-right margin Margins Border border-top border-bottom border-left border-right border padding-bottom padding-top padding-right padding-left padding Padding
  • 28. Controlling Layout The CSS layout properties can control the box on the screen. The boxes can be overlapped using the z-index property. A paragraph that is two inches by one inch and with a scroll bar is displayed
  • 29. XSL It is a style sheet application created specifically for XML. Features of XSL include: It provides a transformation language (XSLT). XSL can be used as a formatting language. XSL can be used to sort and filter. XSL can be used for pattern matching to find records.
  • 30. XSL - 2 XML Document XSL HTML document displayed in the Web HTML CSS
  • 31. Example for XSL The XSL style sheet code <html> <head> <title>Icons In Cricket</title> </head> <body> <h2>Icons In Cricket</h2> <table border=&quot;2&quot; cellpadding=&quot;3&quot;> <tr> <td>Player</td> <td>No. Of Catches</td> <td>No. Of 100's</td> <td>No. Of 50's</td> </tr> <xsl:for-each select=&quot;cricket/player&quot; order-by =&quot;-catches&quot;> <tr> <td><xsl:value-of select=&quot;name&quot;/></td> <td><xsl:value-of select=&quot;no_50&quot;/></td> <td><xsl:value-of select=&quot;no_100&quot;/></td> <td><xsl:value-of select=&quot;catches&quot;/></td> </tr> </xsl:for-each> </table> </body> </html>
  • 32. Patterns The patterns supported in XSL are: Sorting Operators Filtering Letters after sorting
  • 33. Sorting The default sorting is ascending order. The ‘-’ sign is used to sort in descending order. The chart is organized in the descending order of catches
  • 34. Operators XSL supports the se operators: / ./ // .// * @ = /*/name */* @* //name
  • 35. Filtering and Logical Operators Filter operations can contain expression such as Boolean expression, AND, OR, and NOT expressions The different logical operators that can be used are: Operator Description AND Logical and OR Logical or NOT Negation = Equal != Not equal > Greater than < Less than >= Greater than or equal to <= Less than or equal
  • 36. Templates Templates are the instructions in an XSL style sheet, which control the conversion of element and its content. It is represented by <xsl:template>…</xsl:template> It is applied with the <xsl:apply-templates/> element The template has two parts: The matching part The processing part Matching part Processing part
  • 37. Types of Matching Matching Matching by name Matching by ancestry Matching several names Matching the root Wildcard matches Matching by ID Matching by attributes
  • 38. Handling Expressions XSL supports five types of Expressions. These are: Node Sets Booleans Strings Numbers Result Tree Fragments
  • 39. Switching Styles Data Islands 1 XML document Data Islands 2 Data Islands 3 XML document with XSL style sheet 1 XML document with XSL style sheet 2 XML document with XSL style sheet 3
  • 40. xsl:import and xsl:include Style sheets created by other developers can be imported using the xsl:import The syntax for importing style sheets is: <xsl:import href= ‘another stylesheet.xsl’/> <xsl:import href= ‘another stylesheet1.xsl’/> All the different style sheets imported are arranged in an import tree. A new node is created in the import tree when a style sheet is imported
  • 41. Difference Between XSL and CSS It transforms XML into structures such as lists or tables It does not change the structure of the document XSLT lets us to map a certain pattern in the source document CSS determines the visual appearance of a page XSL provides means of transforming of XML documents CSS work by assigning a set of display properties to an HTML element
  • 42. Summary-1 XML is portable. An XML document can be sent from one system to another, and even from application to application, without modifying the content. A style sheet is a set of instructions to display documents. Style sheets can be written in several languages. Two of these are:
  • 43. Cascading Style Sheets (CSS), an extension of HTML eXtensible Stylesheet Language (XSL), an XML specific styling language The selector identifies the tag to which the style applies, and the declaration provides the style rules applied, to the selector .
  • 44. Summary-2 The list of selectors includes Simple selectors, Contextual selectors and Multiple selectors. Contextual Selectors help to differentiate between the different occurrences of a tag. The Multiple Selector is used to assign the same style rule to different elements. One declaration can be applied to several selectors. A block of text can be contained in a box, and this box can then be placed on the browser. The three properties that apply to the boxes are: margins, borders and padding
  • 45. The CSS layout properties can control the layout of the box on the screen. Boxes can be overlapped using the z-index property. This specifies the height and width for a box. XSL is a style sheet language created specifically for XML. It is used to convert XML documents into HTML. Cascading style sheets are applied to the resulting HTML documents for display on the web.
  • 46. Summary-3 The instructions that control how an element and its content should be converted in an XSL style sheet, are called templates. XSL provides support for the following patterns: Sorting Operators Filtering A typical template element looks like this: <xsl:template match = &quot;myElement&quot;> Types of Matching Matching by attribute Matching by ID Matching by wildcard Matching by root Matching by name

Editor's Notes

  • #31: HTML can be displayed without css add to FG