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.
我的 aspx 页面上有三个人选择器控件。但控件大小不可编辑。我尝试减小它的高度、宽度,但它不起作用。
如何使我的人员编辑器看起来像文本框。
任何建议表示赞赏。
在您的 CSS 中添加此类,并根据您的要求更新高度和宽度。
div.ms-inputuserfield { height: 24px; width: 151px; }
这将更新人员选择器的高度和宽度。
PS:无需将此 CSS 类应用于您的人员选择器控件。
谢谢。