怎样去掉文本框的边框
发布网友
发布时间:2022-03-03 10:11
我来回答
共1个回答
热心网友
时间:2022-03-03 11:41
用css
给文本框 套用a
.a {
border-top-style: dashed;
border-right-style: dashed;
border-bottom-style: dashed;
border-left-style: dashed;
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
}