CSS3 gradient background

前端 未结 2 901
栀梦
栀梦 2021-01-04 18:45

Is this right to apply gradient background to the body from a light shade of grey to white from bottom to top?

body {         


        
2条回答
  •  失恋的感觉
    2021-01-04 19:24

    To Zoltan's solution, you could also add:

    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#999999');
    

    to support older IE browsers.

提交回复
热议问题