0
I’m entering the JSF world and I’m trying to create a calculator but I’m not getting to leave the buttons out of space, they need to be together, someone knows how I fix this?
<h:form>
<h:panelGrid columns="4">
<h:commandButton value="7" />
<h:commandButton value="8" />
<h:commandButton value="9" />
<h:commandButton value="/" />
</h:panelGrid>
</h:form>
Still shows the spaces.
– Roknauta
Make sure you don’t have any css of your own by interfering with panelGrid css
– Rafael