Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
553 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 Reply

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>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...