赞
踩
- /* 关键点,让输入框无边框 */
- outline:none;
- border:none;
- <div class="container">
- <input type="text" placeholder="请输入用户名">
- <input type="text" placeholder="请输入密码">
- </div>
- .container input{
- width: 100%;
- height: 7vh;
- /* 关键点,让输入框无边框 */
- outline:none;
- border:none;
- border-bottom: 1px solid #ccc;
- }
- /* 修改placeholder默认样式 */
- .container input::-webkit-input-placeholder {
- /* padding-left: 5px; */
- font-size: 16px;
- color: gray;
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。