One nice aspect of treating Domino application like traditional web development is that it forces you to learn all sorts of advanced JavaScript and CSS tricks. In particular, you can code an HTML tag to reference two CSS style classes. Why would you do this? Well, I had an editable field that was being displayed as a field label. So, the field had to use both the label class style properties, as well as additional style properties that just that field. The label class dictated that field labels must be displayed in bold. The field itself needed to display without the default INPUT field border. Without duplicating the label class attributes, I wanted the field to be displayed using all of the properties defined in both style classes. For a nice example of how to reference two classes in an HTML tag, check out
this tip.