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.
我正在使用 SharePoint Designer 加载列表表单 Web 部件并希望修改 newform.aspx 中的一些颜色。
我右键单击此对象,转到属性-> 格式,但不能更改任何内容。原因是什么?
ListFormWebPart 是一个自动生成表单的 Web 部件,不能自定义。
您需要使用 CSS 对其进行样式设置。您可以使用 CssClass 属性(在代码中)给它一个类
<WebPartPages:ListFormWebPart CssClass="my-style"
...然后使用 CSS 规则定位表单元素
.form-style table.ms-formtable td.ms-formbody { background: color }