Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I see there are some answers posted for this. tried almost all of them with several permutation-combination.. but nothing seems to be working.

components inside panelgris are always middle aligned, instead of top.

tried whatever they said in the below post. How to control alignment of DataTable inside of a PanelGrid?

Please let me know if there is a remedy.

share|improve this question
What CSS have you tried? What's the generated markup? Do you have an SSCCE? – Matt Ball Jul 26 '11 at 17:54

2 Answers

The <h:panelGrid> renders a HTML <table> element. The vertical alignment of a table cell <td> defaults indeed to middle. You want to make it to be top instead. This is easy with CSS.

<h:panelGrid styleClass="foo">

with

.foo td {
    vertical-align: top;
}

If you have a table inside the panelgrid for which you'd like to keep the default table cell vertical alignment of middle, then you need to alter the CSS as follows:

.foo>tbody>tr>td {
    vertical-align: top;
}

so that only the panelgrid's own table cells are top aligned.

To learn all about CSS, check http://www.csstutorial.net.

share|improve this answer
Hi BalusC, Thanks. I'll do it and will update you. – user644745 Jul 27 '11 at 3:03
Hi, I added the code as follows, tried both the options you mentioned, but still not able to make it work. <h:head> <style type="text/css"> .foo>tbody>tr>td { vertical-align: top; } </style> </h:head> <h:panelGrid id="topalign" columns="2" cellpadding="10" cellspacing="10" width="980" styleClass="foo"> what is the mistake am i doing ? The panelgrid has 2 primefaces panel within it as follows. <p:panel header="Job Detail" style="width:680px; border-style: none;"> <p:panel header="Check your Details:" style="width:300px; border-style: none;"> – user644745 Jul 27 '11 at 4:11

Use the panelGrid's columnClasses attribute to identify a CSS class that includes the vertical-align: top; style:

<h:panelGrid columns="2" columnClasses="topAligned">
...
</h:panelGrid>

and the CSS file:

.topAligned {
    vertical-align: top;
}

The contents of the first column in the panelGrid will then be top-aligned within their cells.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.