首頁  >  文章  >  web前端  >  css打造下划线输入框_html/css_WEB-ITnose

css打造下划线输入框_html/css_WEB-ITnose

WBOY
WBOY原創
2016-06-24 11:47:281592瀏覽

类似这样的效果

<input type="text" class="input" />

简单版

    border: 0;    outline: 0;    background: transparent;    border-bottom: 2px solid black;    width: 20px;

稍微复杂点,漂亮点的

    background-color: transparent;        border: none;        border-bottom: 2px solid #fff;        outline: none;        padding-bottom: 10px;        text-align: center;        width: 400px;        font-size: 300%;        color: #fff;        font-weight: 100;
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn