JSP - Formatierung

y0dA

Erfahrenes Mitglied
Hi!
Ich habe folgende Jsp Struktur:
Code:
<h:form id="placeDetail">
    <h:panelGrid width="100%" columns="3" border="0" cellspacing="0" cellpadding="0"
        columnClasses="gridClass1,gridClass2,gridClass3,gridClass4">

        <%-- column1 --%>
        <h:panelGroup  Ausgabe A />

            <%-- column2 --%>
        <h:panelGroup  LEER />

        <%-- column3 --%>
        <h:panelGroup  Erfassung C />
    </h:panelGrid>

Und irgendwie muss ich Ausgabe A und Ausgabe C optisch von einander trennent (also wie mit HTML --> vertical line oder so).
Hat jemand eine Ahnung wie ich dies anstellen könnte?
Habe schon versucht die CSS columnClasses anzupassen, sprich bspw dass ich bei column 3 einfach einen left border mache, jedoch wird mir der nicht angezeigt?

hier die Styles:
Code:
.gridClass1 { width:50%; }
.gridClass2 { width:85px; }
.gridClass3 { width:20px; }
.gridClass4 { width:50%; }
.emptyColumn { width:100px }
 
Zurück