如何在全日历中使用边框间距
我正在尝试设计 fullcalendar jquery 插件的样式,并对其进行大部分设置,但有一个问题。我希望单元格之间有间距(即,这样可以看到表格后面的背景),我可以通过覆盖 css border-spacing 属性来做到这一点,但是当我这样做时,fullcalendar 的宽度计算会被抛出,并且我的远右栏(月视图中的“星期六”)缩小。有什么方法可以告诉 fullcalendar 我正在使用间距,或者有其他方法可以计算出来吗? 谢谢, 亚历克斯
I'm trying to style the fullcalendar jquery plugin, and have it mostly set, with one problem. I want to have spacing between the cells (ie. so can see background behind table), which I can do by overriding the css border-spacing property, however when I do that, the width calculations for fullcalendar get thrown off, and my far right column ('Saturday' in month view) gets shrunk. Is there any way to tell fullcalendar that I'm using spacing, or some other way to have that calculated through?
Thanks,
Alex
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将其添加到问题跟踪器中吗?
http://code.google.com/p/fullcalendar/issues/list
谢谢!
can you add this to the issue tracker?
http://code.google.com/p/fullcalendar/issues/list
thanks!
我遇到了和你面临同样的问题。与挖掘 .js 相反,我只是使用 css 通过使用 addclass 添加宽度到 fc-sat 列来“修复”此问题,从而匹配所需 #calendar 宽度的其他列的宽度。
在我的 css 中使用这些类
希望这会有所帮助。
I was having the same issue that you are facing. As opposed to digging through the .js i just 'fixed' this with css by adding width to the fc-sat column with addclass, matching the width of the other columns of the desired #calendar width.
With these classes in my css
Hope this helps.