jquery mobile background image

前端 未结 11 1962
青春惊慌失措
青春惊慌失措 2020-12-13 04:36

I am building a jQuery mobile site, and I am trying to insert a scalable image into the background, which would adjust to screen size of the phone. This is my code:

11条回答
  •  独厮守ぢ
    2020-12-13 05:15

    I think your answer will be background-size:cover.

    .ui-page
    {
    background: #000;
    background-image:url(image.gif);
    background-size:cover;  
    }
    

提交回复
热议问题