如何设置jeditable生成的按钮的样式?我正在设置文本区域的样式,就像..
.dynform textarea {
width:450px;
max-width: 2450px;
height:200px;
}
其中.dynform是jeditable的cssclass参数。
但是按钮样式似乎不起作用。
.dynform input[type=button] {
border: 1px solid #dddddd; background: #f6f6f6 url(images/ui-bg_highlight-soft_100_f6f6f6_1x100.png) 50% 50% repeat-x; font-weight: bold; color: #38385c;
}
发布于 2010-10-06 14:29:17
jeditable创建类型为'button‘而不是'input’的节点
.dynform button {
border: 1px solid #dddddd; background: #f6f6f6 url(images/ui-bg_highlight-soft_100_f6f6f6_1x100.png) 50% 50% repeat-x; font-weight: bold; color: #38385c;
}
https://stackoverflow.com/questions/3869973
复制相似问题