2010-07-12 83 views

回答

4

正是通過CSS屬性的造型元素,如

.editable form, 
.editable input { 
    margin: inherit; 
    padding: inherit; 
    font: inherit; 
    color: inherit; 
    background: inherit; 
    border: inherit 
} 
可能

其中editable類是Jeditable選擇

0

注:JEditable使用<button />節點代替<input type="button" />,所以對於造型按鈕經由CSS您需要:

.editable button 
{ 
    /** style goes here **/ 
}