废话不多说,上代码:
html结构:
<div class="flex-box">
<p>
<span>我是第一行<i class="icon icon-must"></i></span>
<input type="text" class="enabled text-info" placeholder="" />
</p>
<p>
<span>我是第二行</span>
<input type="text" placeholder="" class="enabled text-info"/>
</p>
<p>
<span>我是第三行<i class="icon icon-must"></i></span>
<input type="text" class="enabled text-info" placeholder="" />
</p>
</div>
css代码:
.enabled{
border: none;
padding: 2px 12px;
font-size: 14px;
line-height: 1.5;
background-color: #fff;
border-bottom: 1px solid #ccc;
outline: none;
}
input[type="text"]:focus,
input[type="password"]:focus {
border-bottom: 1px solid #5cb85c;
}
效果如图所示: