简体   繁体   中英

CSS inline-block Positioning Issue

I'm trying to make a website and I'm having some problems at layout.
I want div:logo and div:social media to be at the same line but I couldn't do.

Demo

write your div:logo and div:social media like this (side by side) don't make any space between them

<div class="child" id="logo">logo</div><div class="child" id="socialMedia">sosyal media</div>

hope this will solve your issue.

Try this:

HTML:

        <div class="parent">
            <div class="parent" id="header">
                <div class="child floatL" id="logo" >
                    logo
                </div>
                <div class="child floatL" id="socialMedia" >
                    sosyal media
                </div>
                <div class="child" id="menuBar">
                    menu bar
                </div>
            </div>

            <div class="parent" id="body">
                body
            </div>

            <div class="parent" id="footer">
                footer
            </div>
        </div>

CSS:

body {
    text-align: center;
}

.floatL
{
    float:left;
}

.parent {
    display: inline-block;
    width: 960px;
}

.child {
    display: inline-block;
}

.parent, .child {
    border:  none;
    background-color: #CCC;
}

#logo {
    width: 640px;
    background-color: #ff6a00;
}

#socialMedia {
    width: 320px;
    background-color: #ffd800;
}

#menuBar {
    width: 100%;
    background-color: #b6ff00;
}

Fiddle

If you are using display:inline-block you are unable to have a space between your inline-block elements otherwise it will treat this as a whitespace and insert it.

Remove this and it will work:

White space between divs deleted

Indentation of code kept with comments

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM