How would I align everything in my below to the far right?
The You can of course also be more specific, e.g. giving the with You can also give each with As an extra hint: rightclick the webpage in webbrowser and choose View Source, then you'll understand better what JSF is all exactly generating.text-align: right;
on every element it renders. With the current code, easiest would be to apply the following:
#authenticate table td {
text-align: right;
}
its own styleClass
and defining a rule in CSS (which would be applied directly on the rendered HTML element).
.className td {
text-align: right;
}
element its own class by columnClasses
attribute which accepts a commaseparated string of CSS classnames which are to be applied repeatedly on the elements. If you want to apply the same class on every element, just specify it once:
.className {
text-align: right;
}