
css
tianseyiwan008
这个作者很懒,什么都没留下…
展开
-
less实现背景图序列帧动画——条件判断
.sequence-frame(@len, @i) when (@i < @len) and (@i < 9) {@x: round(@i * 100 / (@len - 1), 2); // 当前百分比@selector: e("@{x}%"); // 使用 less e 函数变为选择器,注意!!直接套用或者使用 percentage 函数无法识别;当前百分比进度...原创 2020-05-04 02:31:28 · 783 阅读 · 0 评论 -
css解决input[type=text]自动填充(auto fill)内容时颜色为黄色
原因:input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill { background-color:rgb(250, 255, 189); background-image:none; color:rgb(0, 0, 0);} 解决input:-webki...原创 2018-09-05 00:10:16 · 2574 阅读 · 0 评论