這篇文章帶給大家的內容是關於CSS怎麼實現body背景層高於塊元素,有一定的參考價值,有需要的朋友可以參考一下,希望對你有幫助。
本文實例講述了CSS實作body背景層高於區塊元素的方法,分享給大家供大家參考。具體實作方法如下:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>demo</title> <meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui"> </head> <style> html, body{ width: 100%; max-width: 640px; height: 100%; overflow-x: hidden; margin: 0 auto; background-color: #000; font-family: 微软雅黑, 华文细黑, 黑体; } body{ background-image: url('img/person1.png'); background-repeat: no-repeat; background-position: bottom; background-color: transparent; background-size: 100%; } .box{ width: 100%; height: 50%; background-color: green; z-index: -1; position: absolute; } </style> <body> <div></div> </body> </html>
效果如下:
#以上就是對CSS怎麼實作body背景層高於區塊元素的全部介紹,如果您想了解更多有關CSS3教學,請關注PHP中文網。
以上是CSS怎麼實作body背景層高於區塊元素的詳細內容。更多資訊請關注PHP中文網其他相關文章!