关键点:
/* 关键点,让输入框无边框 */
outline:none;
border:none;
1.效果图
文章来源地址https://www.toymoban.com/news/detail-819057.html
2.html
<div class="container">
<input type="text" placeholder="请输入用户名">
<input type="text" placeholder="请输入密码">
</div>
3.css
.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;
}
文章来源:https://www.toymoban.com/news/detail-819057.html
到了这里,关于前端使用css去除input框的默认样式的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!