像input,button等元素对齐方法

使用vertical-align可以实现对齐


<html>
    <head>
        <meta charset="UTF-8">
        <title>title>
        <style type="text/css">
            input,button{
                height: 30px;
                width: 50px;
                vertical-align: top;
            }
        style>
    head>
    <body>
        <input type="" name="" id="" value="" /><button>button>
    body>
html>

你可能感兴趣的:(css,html)