当前位置: 代码迷 >> Web前端 >> 网页色彩置"灰色"
  详细解决方案

网页色彩置"灰色"

热度:371   发布时间:2013-06-25 23:45:41.0
网页颜色置"灰色"
方法1:
<style type="text/css">
    html { filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1); }
</style>

方法2:
<style type="text/css">
    html {
        FILTER: gray;
    }
</style>
  相关解决方案