有没有办法让asp.net控件中的文本框只显示为下划线,就像在纸质文档中放置空格以进行文本输入一样?
最佳答案
应用坚固的边框底部:
原文链接:https://www.f2er.com/css/427159.html
CSS:
input.underlined
{
border:0;
border-bottom:solid 1px #000;
outline:none; /* prevents textbox highlight in chrome */
}