0

HTML KickStart 框架有一个不错的默认主题。但是,我想恢复输入字段的默认样式。如何通过覆盖 KickStart 主题来解决这个问题?

HTML5 启动:http ://www.99lime.com/

4

1 回答 1

0

打开kickstart-forms.css查找为输入元素分配的 CSS 属性,然后重写它。

你必须改变:

input { }
input:focus { }
input[type="text"] { }
input[type="text"]:focus { }
input[type="password"] { }
input[type="password"]:focus { }

以及您不喜欢的每个输入;)

要恢复浏览器默认样式,请注释掉输入元素的 CSS 属性,例如

/* This is a comment in CSS
input { }
input:focus { }
input[type="text"] { }
input[type="text"]:focus { }
input[type="password"] { }
input[type="password"]:focus { }
*/

或者只是删除上述样式。

于 2013-09-17T23:46:57.097 回答