2010-10-06 123 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; 
} 
的節點