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 页面上有一个日历对象,一切正常,直到我的用户要求它更小。
我尝试设置高度和宽度。但它不会从默认大小减小日历,但是,如果我将它们设置为大于默认大小,它会增加大小。我只是坚持默认尺寸是最小的吗?
谢谢
我问了5分钟后的另一个答案……总是这样。
缩水的问题全部出在字体大小上。它不会自动缩小字体以适应较小的日历。所以我只是使用 CSS 来做到这一点:
font:12px arial,tahoma,sans-serif;
它最终会缩小。