1

I' trying to use RSCSS on my project.

I've a navbar with two rows and each row has columns.

Is this correct or should I use something different?

.top-navbar
  .subnavbar-one
    .column
    .column
  .subnavbar-two
    .column
    .column
Fez Vrasta
  • 14,110
  • 21
  • 98
  • 160

1 Answers1

3

Auto-replying because I think I've found the solution.

I should use a structure like this:

.top-navbar
  .subnavbar.-one
    .column
    .column
  .subnavbar.-two
    .column
    .column

Where -one and -two are two modifiers of the subnavbar element.

Fez Vrasta
  • 14,110
  • 21
  • 98
  • 160