Using nth-child

hello everyone!
i need to use nth-child to disable border for last ul item. can i do it using UI or i must write it down in additional styles?

thanks!

Yep, for now you’ll have to use custom css in the head area.

<style>
.someclass:nth-child(2) {
/* some css rules */
}
</style>
3 Likes

or .someclass:last-child { ... }

1 Like