以下是html代码:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"><title>Filter测试</title></head><body><img src="001.jpg" width="100px;"/><img src="002.jpg" width="100px;" /><img src="003.jpg" width="100px" /><img src="Chrysanthemum.jpg" width="100px;" /></body></html>一下是Filter.css代码:img { filter:gray;}
2 回答
慕田峪7331174
TA贡献1828条经验 获得超13个赞
典型的不考虑兼容性的 css。
给你个兼容全部的吧:
img{ -webkit-filter: grayscale( 100% ); -moz-filter: grayscale( 100% ); -ms-filter: grayscale( 100% ); -o-filter: grayscale( 100% ); filter: grayscale( 100% ); filter: gray ; } |
- 2 回答
- 0 关注
- 753 浏览
添加回答
举报
0/150
提交
取消