html中input标签边框怎么才能隐藏,如下面的图,发现有框很丑,想去掉然后加上横线就行了,望大神指点

2024-12-22 21:31:47
推荐回答(2个)
回答1:

给 input 加 样式 boeder:0px 是把 边框 去掉了,
想 加 的话 就是 border:1px #ccc solid; 根据 自己需要 加边框
背景 图片 也是 一样的 , 直接给 背景 样式 就可以!

回答2:

这样定义CSS
textarea, input {
border-left: 0;
border-right: 0;
border-top: 0;
border-bottom: 1px solid #000000;
}