源代码
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>编程字典</title> <style> .center { line-height: 200px; height: 200px; border: 3px solid green; text-align: center; } .center p { line-height: 1.5; display: inline-block; vertical-align: middle; } </style> </head> <body> <h2>居中</h2> <p>在这个例子中, 使用line-height 属性值和 height 属性值相等来实现垂直居中:</p> <div class="center"> <p>我水平和垂直居中的.</p> </div> </body> </html>
运行结果