1
P233 2014-03-28 16:28:29 +08:00 1
.clipRow {
text-align: right; } .clipRow:after { content: ''; display: table; clear: both; } .clipRow > a { float: left; } |
2
P233 2014-03-28 18:02:53 +08:00 1
把(2014-03-26)替换成 03-26 ,想了想 CSS 的方法,可以这样
.clipRow > font { display: inline-block; overflow: hidden; width: 38px; height: 30px; text-indent: -43px; vertical-align: top; } 去掉括号可以 .clipRow {color: transparent;} 缺点是固定的 px 宽度切割,不能保证 100% 准确,可能 fixed width 字体会好些 还是 js 办法靠谱,菜鸟就不献丑了 :) |
3
P233 2014-03-28 18:07:35 +08:00 1
高度 30px 是测试的时候写的,忽略吧,抱歉
|
4
guchengf 2014-03-28 18:21:10 +08:00 1
获取日期的值
比如 a = '2014-03-26'; 然后 b = a.substr(5,5); 如果所有日期都是这个格式的话。 |