answersLogoWhite

0

Distinguish between XSL and CSS with XML?

Updated: 8/18/2019
User Avatar

Wiki User

13y ago

Best Answer

If you wish to style an element within XML you will need to use XSL and XSLT, CSS is commonly used for HTML and other languages other than XML data.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Distinguish between XSL and CSS with XML?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are the differences between css and xsl?

CSS is used to format HTML documents (webpages); XSL is used to tell a browser in what format to display an XML document.


How a way of describing XML data?

XML uses XSL to describe data


What XSL element can you use to sort or order your XML data?

Assuming "XLS" means MS Excel, you can import your XML data to Excel, then filter or sort as desired.


What has the author Neil Bradley written?

Neil Bradley has written: 'The concise companion' -- subject(s): SGML (Document markup language) 'The XML schema companion' -- subject(s): XML (Document markup language), Database management 'A scheduling policy simulator' 'XSL Companion, The'


What does XSL stand for?

XSL- Extensible Style sheet Language.


What are the tools available to convert XML or HTML to other formats like PDF and XSL and Word?

simpo pdf creator can allow you convert HTML to PDF document.you can go to this website to download. http://www.simpopdf.com


What is duration of web design course?

There are plenty category in web design, duration of course is depend upon its category, Its takes time 2 weeks to a year, * Markup languages (such as XHTML and XML) * Style sheet languages (such as CSS and XSL) * Client-side scripting (such as JavaScript and VBScript) * Server-side scripting (such as PHP and ASP) * Database technologies (such as MySQL) * Multimedia technologies (such as Flash and Silverlight) all above mention are main category of web design


How can XSLT help with document transformation?

XSLT (Extensible Stylesheet Language Transformations) is a language for transforming XML documents into other XML documents, or other objects such as HTML for web pages, plain text or into XSL Formatting Objects which can then be converted to PDF, PostScript and PNG.The original document is not changed; rather, a new document is created based on the content of an existing one.


What has the author Douglas Lovell written?

Douglas Lovell has written: 'XSL formatting objects' -- subject(s): XSL (Document markup language)


What is the full form of XSL?

Extensible StyleSheet Language


Where can one find more information regarding XSL online?

There are multiple online resources where you can find more information regarding XSL. Some popular options include the World Wide Web Consortium (W3C) website, which provides the official XSL specifications and documentation, as well as tutorial websites like W3Schools or Tutorials Point, which offer beginner-friendly explanations and examples of XSL concepts and syntax. Additionally, online forums and communities such as Stack Overflow can be valuable sources for specific questions and discussions related to XSL.


How convert the parent to a child by xsl?

i want convert the xml file by xsl file.. from tis: <doctor> <course> <section> </section> <section> </section> </course> <course> <section> </section> <section> </section> </course> </doctor> <doctor> <course> <section> </section> <section> </section> </course> <course> <section> </section> <section> </section> </course> </doctor> ---------------------------------------- to be like : <course> <doctor> <section> </section> <section> </section> </doctor> <doctor> <section> </section> <section> </section> </doctor> </course> <course> <doctor> <section> </section> <section> </section> </doctor> </course>