Semantic-ui: [Tab] Centered Tab

Created on 26 Jul 2017  路  9Comments  路  Source: Semantic-Org/Semantic-UI

Be default all tabs are on the left: https://semantic-ui.com/modules/tab.html

How I can achieve centered Tab like in Bootstrap 4 ?

There is no example of centered tab in Semantic doc

Enhancement

Most helpful comment

Quick CSS fix:
Add margin-left: auto to the first child of the menu and margin-right: auto to the last child.

Example:

.ui.secondary.pointing.menu a:first-child {
  margin-left: auto;
}

.ui.secondary.pointing.menu a:last-child {
  margin-right: auto;
}

Result:
Image of SUI Tabs Centered

All 9 comments

Hi @rafalradomski, it doesn鈥檛 exist. Would you like to request it?

@Banandrew I surprised no one asks about it before, it's common use case on centered pages

This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 30 days if no further activity occurs. Thank you for your contributions.

I'd rather it doesn't disappear in a pile of stale issues, so here's some activity from me: I'd also like to have a way to have my tabs centered.

Just ran in the same issue. Would be great if it is implemented.

Quick CSS fix:
Add margin-left: auto to the first child of the menu and margin-right: auto to the last child.

Example:

.ui.secondary.pointing.menu a:first-child {
  margin-left: auto;
}

.ui.secondary.pointing.menu a:last-child {
  margin-right: auto;
}

Result:
Image of SUI Tabs Centered

Was able to center menu in tab by adding style prop to menu shorthand:
<Tab menu={{ attached: true, tabular: true, style: { display: "flex", justifyContent: "center" } }} panes={panes} />

Quick CSS fix:
Add margin-left: auto to the first child of the menu and margin-right: auto to the last child.

Example:

.ui.secondary.pointing.menu a:first-child {
  margin-left: auto;
}

.ui.secondary.pointing.menu a:last-child {
  margin-right: auto;
}

Result:
Image of SUI Tabs Centered

Worked for me (thanks @franckpopchef); here is a sandbox example:
https://codesandbox.io/s/semantic-ui-example-center-tabs-8deuf

Was this page helpful?
0 / 5 - 0 ratings

Related issues

larsbo picture larsbo  路  3Comments

guilhermeblanco picture guilhermeblanco  路  3Comments

ghost picture ghost  路  3Comments

ghost picture ghost  路  3Comments

miguelmota picture miguelmota  路  3Comments