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.
我希望 vaadin-date-picker 在叠加层弹出时仅显示两个月。有没有办法将其限制为几个月或以像素为单位的特定高度?
我通过使用以下 CSS 向 vaadin-date-picker 元素添加主题来解决此问题:
.custom-height-date-picker { --vaadin-date-picker-overlay: { max-height:300px; } }
并在元素中引用 CSS 类:
<vaadin-date-picker class="custom-height-date-picker" label="Birthdate"> </vaadin-date-picker>