I have these 3 classes css
, and would like to know if it is possible to transform into one, it would be used in panel grid
of Primefaces
.panelGridCenter {
margin: 0 auto;
}
.gridNoBackground tr{
background: transparent;
background-color: transparent;
}
.noBorders tr, .noBorders td {
border: none !important;
border-spacing: 0px !important;
}
I'm in doubt how to make panel grid
aligned to the center and remove the background color and its borders in a single css
.
Thank you