Hi,歡迎訪問前端老白
<figure> <img src="example.jpg"> <figcaption>全屏圖片示例</figcaption> </figure>
figure { display: block; position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 99999; overflow: hidden; margin: 0; padding: 0; } img { display: block; width: 100%; height: auto; } figcaption { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); color: #fff; font-size: 24px; text-align: center; width: 100%; }
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>全屏圖片示例</title> <style> figure { display: block; position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 99999; overflow: hidden; margin: 0; padding: 0; } img { display: block; width: 100%; height: auto; } figcaption { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); color: #fff; font-size: 24px; text-align: center; width: 100%; } </style> </head> <body> <figure> <img src="example.jpg"> <figcaption>全屏圖片示例</figcaption> </figure> </body> </html>
老白網(wǎng)絡(luò) (http://www.lofty888.cn/) 前端 后端 zblog主題.網(wǎng)站地圖xml