HTMLDocument::addDocumentStylesheet(3) 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 ([email protected]). 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)