1. 程式人生 > 其它 >html-css-讓文字水平垂直居中

html-css-讓文字水平垂直居中

技術標籤:Html+CSS+jscsshtml

如何讓文字處於容器的正中央?

<!DOCTYPE html>
<html lang="en">
<head>
    <style>
        *{
            margin: 0;
            padding: 0;
        }
        .text{
            width: 100px;
            height: 100px;
            background-color: yellow;
            text-align
: center; line-height: 100px; }
</style> <title>textcenter</title> </head> <body> <div class="text"> center </div> </body> </html>

文字水平垂直居中
text -aligh配合line-height(設為容器高度)即可實現文字水平垂直居中