文本框和按钮对齐

由于input和button都是行内块级元素所以有间隙。浮动后变为块级元素间隙消失。
也可以flexbox布局更方便。


.search {
    width: 400px;
    height: 38px;
    border: solid 1px #441605;
}
        
input, button {
    float: left;
    outline: none;
    height: 38px;
    border: 0;
    padding: 0;
    line-height: 38px;
}

input {
    width: 80%;
    font-size: 16px;
    text-indent: 16px;
}

button {
    width: 20%;
    color: #fff;
    font-size: 20px;
    text-align: center;
    background: #a24729;
    cursor: pointer;
}

效果:

未标题-1.png

你可能感兴趣的:(文本框和按钮对齐)