如何去掉html中input的边框 2020-03-30网页设计 214 这里不能用css样式选择器选择input组件,设置 border:none;或border: 0px;outline:none;cursor: pointer; 亲测没有用处,只有写这种格式时生效,如下: <input type="text" style="border:none;"> The End