如何讓p裡面的圖片滿版呀?
background-image: url(.jpg); background-size: cover;
這樣用智能手機看圖片仍然沒有滿版呀怎麼樣讓圖片能夠100%放大?就是寬度是100% 高度也是100% 變形無所謂(不變形更好)
Note: You need to set the height of the element you fill with the background, as well as the height of its parent tag, body, and html to 100%, otherwise it will not be displayed
You need to specify both width and height to fill the screen size
background-size:100% 100%
If you need it urgently, use css to make the picture width and height 100%
If you want the p container to fill the screen, its background will fill the screen~~~
Note: You need to set the height of the element you fill with the background, as well as the height of its parent tag, body, and html to 100%, otherwise it will not be displayed
You need to specify both width and height to fill the screen size
If you need it urgently, use css to make the picture width and height 100%
If you want the p container to fill the screen, its background will fill the screen~~~