Choosing a component as a selector
in a css file is quite simple.
The pattern is
selector {
attribute: value;
...
}
I could choose say <p>
as a selector as an HTML tag but how does it work with JSF tags?
I found out that you can use HTML equivalents of JSF tags, e.g.
h:inputText
to <input>
... but that is just about the only JSF-HTML conversion I know ... :)
Where can I find all corresponding tags?
Are there any other methods of styling JSF components with css?