0

http://codepen.io/anon/pen/EJluF

似乎文本使块不对齐。我怎样才能阻止这个?例如,“服务器备份”确实很糟糕。我试图将每一行放在它自己的块中,但遏制不起作用/有效。我在 chromium 调试中看不到“服务器备份”将时钟 div 向下推...所以这很奇怪为什么它会这样做。

以下是可能有帮助的 CSS3 文本部分:

html {
    width: 100%;
    height: 100%;
}


#row1 {
    display: block;
    width: 1600px;
    height: 230px;
}

#row2 {
    display: block;
    width: 1600px;
    height: 230px;
}

#row3 {
    display: block;
    width: 1600px;
    height: 230px;
}

.zentext {
    font-family: yo2;
    text-shadow: 1px 8px 1px #000;
    font-weight: 900;
    font-size: 200%;
    margin-top: 40px;
    margin-left: 200px;
    color: cyan;
}
4

1 回答 1

3

添加

.zentext {
position: absolute;
}
于 2013-10-05T20:13:05.477 回答