前端实现网站首页:背景图加文字居中效果
效果图:
实现方式:使用table-cell布局
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> .parent { width: 100%; height: 100%; display: table; text-align: center; } .son { display: table-cell; vertical-align: middle; background-color: rgb(140, 25, 163); } </style> </head> <body> <div class="parent"> <div class="son"> <h1>智慧园区</h1> <h3>SMART PARK</h3> <p>全方位提升一人为本,独具特色,高效运行的美好、智慧园区</p> </div> </div> </body> </html>
。