Scroll to navigation

HTMLDocument.addDocumentStylesheet(3kaya) Kaya module reference HTMLDocument.addDocumentStylesheet(3kaya)

NAME

HTMLDocument::addDocumentStylesheet - Adds a linked external stylesheet to the document

SYNOPSIS

Void addDocumentStylesheet( HTMLDocument doc, [MediaType] media, String uri )

ARGUMENTS

doc The HTML document
media A list of media types that this stylesheet applies to
uri The location of the stylesheet.

DESCRIPTION

Adds a linked external stylesheet to the document. See the HTMLDocument.MediaType (3kaya) documentation for an explanation of the various media types. Currently only CSS stylesheets are supported by this function.

addDocumentStylesheet(doc,[MTall],
"/styles/base.css");
addDocumentStylesheet(doc,[MTprint],
"/styles/print.css");
addDocumentStylesheet(doc,[MTscreen,MTprojection,MThandheld],
"/styles/visual.css");
If the media array is empty, [MTall] will be used.

AUTHORS

Kaya standard library by Edwin Brady, Chris Morris and others (kaya@kayalang.org). For further information see http://kayalang.org/

LICENSE

The Kaya standard library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License (version 2.1 or any later version) as published by the Free Software Foundation.

RELATED

HTMLDocument.MediaType (3kaya)
August 2014 Kaya