您的位置:首页 > Web前端 > CSS

placeholder的字体样式改变,滚动条的颜色改变,ios日期兼容

2017-02-06 18:21 686 查看
placeholder:

::-webkit-input-placeholder { color:  rgba(153, 153, 153, 0.541);font-size:12px;}
:-moz-placeholder {color:  rgba(153, 153, 153, 0.541);font-size:12px;}
::-moz-placeholder {color:  rgba(153, 153, 153, 0.541);font-size:12px;}
:-ms-input-placeholder {color:  rgba(153, 153, 153, 0.541);font-size:12px;}

scollbar:

::-webkit-scrollbar {width:6px; border-radius: 3px;background-color:#eff0f3;  opacity: 0.1; z-index: 309;}
::-webkit-scrollbar-thumb{ border-radius: 3px; background-color: #c19b74; opacity: 0.1; z-index: 309; }

ios日期兼容:


new Date(res.data[i].inventoryDate.replace(/-/g, "/"));
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: