css
The basic css tag is a single tag and used to output the URL of the style sheet assigned in the Sections tab.
attributes
name="unset"
format="url"
rel="stylesheet"
media="screen"
title="unset"
genealogy
Version 4.3.0
Version 4.0.4
Output the URL to the section’s default style sheet
<head>
<!-- ...tags... -->
<txp:css />
<!-- ...more tags... -->
</head>
Output the URL to a named style sheet
<head>
<!-- ...tags... -->
<txp:css name="style_name" />
<!-- ...more tags... -->
</head>
Output print and alternate style sheets
<head>
<!-- ...tags... -->
<txp:css name="plain" rel="alternate" title="Plain and Simple Style" />
<txp:css name="glossy" rel="alternate" title="Glossy Style"/>
<txp:css name="print" media="print" />
<!-- ...more tags... -->
</head>