Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/40.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Jquery 桌面按钮样式_Jquery_Css_Jeditable - Fatal编程技术网

Jquery 桌面按钮样式

Jquery 桌面按钮样式,jquery,css,jeditable,Jquery,Css,Jeditable,如何设置表格生成的按钮的样式?我将文本区域设置为 .dynform textarea { width:450px; max-width: 2450px; height:200px; } 其中.dynform是表的cssclass参数 但是按钮样式似乎没有起作用 .dynform input[type=button] { border: 1px solid #dddddd; background: #f6f6f6 url(images/ui-bg_highlight-

如何设置表格生成的按钮的样式?我将文本区域设置为

.dynform textarea {
    width:450px;
    max-width: 2450px;
    height:200px;
}
其中.dynform是表的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;
}

表创建的节点类型为“按钮”而不是“输入”

.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;
}