My <p:panelGrid>
looks like this:
<p:panelGrid style="width: 50px">
<p:row>
<p:column colspan="2">
<p:inputTextarea/>
</p:column>
</p:row>
</p:panelGrid>
Despite trying to set the width of the panel grid to 50px using CSS with the width
property, it didn't become 50px wide as expected.
Is there a proper way to adjust the width of the panel grid to 50px?