I am entering the JSF world and I am trying to create a calculator but I can not leave the buttons without space, they need to be together, does anyone know how to solve 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>