How to align PanelGrid to center? JSF-Primefaces

前端 未结 3 1831
挽巷
挽巷 2021-02-18 12:44

I know that there are many questions about this issue, but nothing worked for me properly.

I need to align my PanelGrid to center(horizontal).

this is m

3条回答
  •  名媛妹妹
    2021-02-18 13:26

    The JSF component renders a HTML

    element which is by default a block level element. To center the block level element itself, you should set its horizontal margin to auto instead of attempting to center its inline contents.

    .panelGridCenter {
        margin: 0 auto;
    }
    

    See also:

    • Center a div in CSS

    提交回复
    热议问题