<input type="submit" value="submit" />
我想添加一些额外的样式,使其看起来平坦:
input { border: 0; background: none; -webkit-appearance: none; }
这就是事后的看法:
但是,如果仔细观察,提交按钮顶部仍有一些边框……有没有办法去除凹陷或凸起的表面,使其看起来平坦?
规则是:
input[type="submit"] /* Or better yet try giving an ID or class if possible*/ { border: 0; background: none; Box-shadow: none; border-radius: 0px; }