Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
545 views
in Technique[技术] by (71.8m points)

html - How to align content horizontally using Flexbox?

Example Picture Don't worry about the look of it. I'm trying to align the input and the anchor horizontally with the logo using flexbox. Example attached. The logo will be on the right and the input with the anchor will be on the left but all horizontal.

<div class="small-12 cell footer-logo-container">
    <a href="#">
        LOGO
    </a>
    <div class="footer-email">
        Sign Up for the Rock River Report Here
        <input class="footer-input" type="email" placeholder="email">
        <a href="#" class="link">
            <div class="link-text">
                SUBSCRIBE
            </div>
        </a>
    </div>
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Check https://css-tricks.com/snippets/css/a-guide-to-flexbox/. Useful website for most of your CSS. If I understood what you wrote correctly you could use this code:

    .footer-logo-container {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }
    
    .footer-email {
        display: flex;
    }
<div class="small-12 cell footer-logo-container">
      <a href="#">
         LOGO
      </a>
      <div class="footer-email">
        Sign Up for the Rock River Report Here
        <input class="footer-input" type="email" placeholder="email">
        <a href="#" class="link">
            <div class="link-text">
                SUBSCRIBE
            </div>
        </a>
    </div>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.8k users

...