ale*_*lex 8 css internet-explorer-7
我的网页上的文字在Firefox和Safari中看起来很好,但在IE7中某些部分被切断了.它看起来像(但它没有)它被放置在一个较小的元素中overflow: hidden;.
谁知道如何解决这个问题?
ale*_*lex 32
您需要指定行高以匹配字体大小...
h1 {
font-size: 2em;
line-height: 2em; /* or 100% */
}
Run Code Online (Sandbox Code Playgroud)