F
F
filrodir2021-06-18 10:59:55
css
filrodir, 2021-06-18 10:59:55

How to move a paragraph to the left side of a menu using flexbox?

<nav class="menu">
        <div class="menu__links">
        <a href="#">Home</a>
        <a href="#">About us</a>
        <a href="#">Our services</a>
        <a href="#">Deposits</a>
        <a href="#">FAQs</a>
        <a href="#">Contact us</a>
        </div>
        
        <div class="menu__phone">
        <p>Call us: (2457) 555 222 333</p>
        </div>

      </nav>

.menu__links {
  display: flex;
}

.menu__phone {
  display: flex;
  justify-content: flex-end;
}

Answer the question

In order to leave comments, you need to log in

1 answer(s)
S
Sergey delphinpro, 2021-06-18
@filrodir

So

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question