我有这个CSS3 div样式定义

.title {
    font-size: 1.5em;
    letter-spacing: 2.1em;
    text-align: center;
    font-weight: 100;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
    }


我使用该div,然后看到以下内容:

html - 在DIV上居中放置文字无法正常工作-LMLPHP

标题不在DIV框内居中。我试图改变很多事情。

有任何想法吗?

最佳答案

尝试这个

title {
    font-size: 1.5em;
    letter-spacing: 2.1em;
    text-indent: 2.1em;
    text-align: center;
    font-weight: 100;
    font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
    }

关于html - 在DIV上居中放置文字无法正常工作,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46151498/

10-11 23:36