2010-10-06 120 views
4

如何设置jeditable生成的按钮的样式?我正在设计textarea ..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; 
} 

回答

5

jeditable创建类型的 '按钮' 不 '输入'

.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; 
} 
的节点