I am not very familiar with css, so I have a question about this form:
<h:form>
<h:outputLabel1 value="some text1"/>
<h:outputText1 value="someOutputtext1 />
.
.
<h:outputLabelN value="some textN"/>
<h:outputTextN value="someOutputtextN/>
<h:form/>
The result looks like this:
some text1 someOutputtext2 some textN someOutputtextN
How can I set the offset margin using the style attribute from the beginning of "some text1" to the beginning of "someOutputtext2"? I want each output text to start at the same position. Thank you for any advice.