Draw lines between tabs

I need to customize tabs in ionic

want to add lines kind of border between tabs

is there any such property in ionic to do the same

You need a custom css to do that:

.tab-item:not(:last-of-type) {
    border-right: 1px solid #ccc;
}
1 Like