Reputation: 12230
How could I expand the space between the tabs of a Primefaces AccordionPanel ?
Upvotes: 1
Views: 3206
Reputation: 1108722
According to my Chrome web developer toolset,
you just have to change the margin-top
of the .ui-accordion .ui-accordion-header
.
E.g., to 20px:
.ui-accordion .ui-accordion-header {
margin-top: 20px;
}
Upvotes: 3