Fix problem with float in Google Chrome

1

I'm having a headache with google chrome.

It seems to be a bug in this version of chrome, but when inserting float: right, display: inline-block or any way to leave two elements parallel, next to each other, when I try to open chrome, of the elements is positioned above the other.

I found a bug in version 25 of the chrome where it did the same thing, but only when the element it contained contained the clear property.

A comparison: (Notedisregardtheborderontheexit,Iwasinthemodetoinspectelements)

<header><divid="banner">
    <a href="time.php">
        <div id="logo" title="Seguro, prático e rápido!"></div>
    </a>
    <form id="login">
        <label>Bem vindo a overip,  - </label>
        <br>
        <label>Login às </label>
        <input type="button" id="menu-servicos" class="button" value="" style="display:inline-block">
        <input type="submit" name="sair" class="button" value="Sair">           
    </form>
</div>
</header>

CSS -

header, aside, section, footer{ display:inline-block; }
header{
    width:100%;
    clear:both;
}
#banner{
    background: url("../image/menu-bg.png") no-repeat center top;
    position: relative;

    overflow: auto;
    -webkit-box-shadow: 0px 3px 11px #000000;
    -moz-box-shadow: 0px 3px 11px #000000;
    -ms-box-shadow: 0px 3px 11px #000000;
    -o-box-shadow: 0px 3px 11px #000000;
    box-shadow: 0px 3px 11px #000000;
}
#logo{
    background:url("../image/logo.png") no-repeat;
    background-size: 100%;

    width: 115px;
    height: 60px;
    display: inline-block;
    float:left;

    margin: 1% 0 1% 10%;
}
#login{
    display: inline-block;
    margin: 0.5% 0 1% 25%;
    font-style: italic;
    font-weight: bold;

    float:left;
}
#menu-servicos{
    margin-left: 10px;
    background:url("../image/arrows.png") no-repeat #FF9E02 center center;
    background-size: 30%;
    min-width: 68px;
}
#menu-servicos:hover{
    background-color: #E88F00;
}
.button{
    border: medium none;
    font-size: 9pt;
    padding: 2px 20px;
    line-height: 20px;
    cursor: pointer;
    margin: 10px 0px;
    border-radius: 5px;
    -o-border-radius: 5px;          
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    background: none repeat scroll 0% 0% #FFB502;
    font-weight: bold;
    text-transform: uppercase;
    min-width: 68px;
}

This is the current version of it, I've tried a lot of things between the buttons (float, inline-block) and divs containers.

    
asked by anonymous 25.09.2014 / 21:25

2 answers

1

Dude, I do not have time to study the cause of the problem, but ... use

.button{
    vertical-align: top;
}

... that solves, at least here resolved.

Openings

    
27.09.2014 / 03:19
1

See if you can help: link

I made a small adaptation in the html, putting the label and the two inputs inside a div. Here it is well aligned.

    
26.09.2014 / 23:48