C
C
cache02017-03-05 20:52:31
css
cache0, 2017-03-05 20:52:31

How to do it in SASS .navbar-inverse .navbar-nav > li > a?

How to do it in SASS

.navbar-inverse .navbar-nav > li > a {
 color: #ffffff
 border-bottom: 2px solid transparent
 white-space: nowrap
}
?
clarification
do so
.navbar-inverse .navbar-nav 
  li
    a
      color: #ffffff
      border-bottom: 2px solid transparent
      white-space: nowrap

it turns out like this
.navbar-inverse .navbar-nav li a {
  color: #ffffff;
  border-bottom: 2px solid transparent;
  white-space: nowrap; }

I want it to be like this
.navbar-inverse .navbar-nav > li > a {
 color: #ffffff
 border-bottom: 2px solid transparent
 white-space: nowrap }

how right?

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
Anton, 2017-03-05
@cache0

.navbar-inverse .navbar-nav > li > a

T
TitNIk, 2018-03-20
@TitNIk

Не надо так делать )))

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question