Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions getting-started-vue/08.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,23 @@

### Step 19. Styling the currently selected tab title

`<BottomNavigation>` supports the CSS `:active` pseudo selecvtor to change the selected/deselected state of `TabStripItem` or `TabStripContent`.
`<BottomNavigation>` supports the CSS `:active` pseudo selector to change the selected/deselected state of `TabStripItem` or `TabStripContent`.

Use inline NativeScript-specific CSS to change the color and font size of the tab titles.

<hr data-action="start" />

#### Action

* **a.** In `HelloWorld.vue`, add the `tabstripitem` CSS class to the `style` section.
* **a.** In `HelloWorld.vue`, add the `<TabStripItem>` styles to the `style` section.

```CSS
<style scoped>
TabStripItem.tabstripitem {
TabStripItem {
background-color: teal;
}

TabStripItem.tabstripitem:active {
TabStripItem:active {
background-color: yellowgreen;
}
</style>
Expand Down