Button верстка

by Bacher

HTML

<div class="container">
    <div class="input-wrapper">
        <input/>
    </div>
    <button>Lol</button>
</div>

CSS

.container {
    width: 300px;
    outline: 1px solid red;
}

button {
    float: right;
}

.input-wrapper {
    display: inline-block;
    margin-right: 77px;
}

input {
    width: 100%;
}