Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何正确设置表单提交按钮的样式,特别是“添加到购物车”?
类是.form-submit,id 是#edit-submit。
.form-submit
#edit-submit
当我使用 id 设置样式时#edit-submit,样式会持续到 ajax 更新表单。Submit 按钮看起来与 Drupal 的其余按钮相同。
如果我使用该类来设置样式,那么由于某种原因它只接受按钮的高度,而忽略其余的样式。
有什么建议吗?
可能是你在 CSS 中有一些冲突。这行得通吗?
!important;
例子
.your_css_class { height:500px !important; }