Layering images in CSS - possible to put 2 images in same element?

后端 未结 8 883
你的背包
你的背包 2021-02-04 05:07

Supposing I\'m setting a background image for a web page in CSS like this:

body    {
font-size: 62.5%; /* Resets 1em to 10px */
font-family: Verdana, Arial, Sans         


        
8条回答
  •  野的像风
    2021-02-04 05:40

    Don't forget you can apply styles to the HTML element:

    html {
    background: url(images/whatever.gif);
    }
    

提交回复
热议问题