sIFR3 h1 高度
我的文本使用 sifr3。 现在我的问题是我无法获得适合我的标签的行高。
有人可以帮我吗? 行高、高度、行距等都不起作用。 在这里您可以找到输出: http://www.bbp.nl/luuk-test/emmc/
ccs代码:
.sIFR-active h1 {
visibility: hidden;
font-family: Verdana;
font-size: 14pt;
line-height: 1em;
padding: 0;
margin: 0;
text-align: right;
color: #ff5400;
}
js 代码:
sIFR.replace(rockwell, {
selector: 'h1'
,css: [
'.sIFR-root { text-align: right; leading: -14; }'
,'a { text-decoration: none; }'
,'a:link { color: #000000; }'
,'a:hover { color: #ff5400;; }'
]
});
I use sifr3 for my text.
Now my problem is that i can't get the line height right for my tag.
Can somebody please help me?
line-height, height, leading etc wont work.
Here you can find the output:
http://www.bbp.nl/luuk-test/emmc/
ccs code:
.sIFR-active h1 {
visibility: hidden;
font-family: Verdana;
font-size: 14pt;
line-height: 1em;
padding: 0;
margin: 0;
text-align: right;
color: #ff5400;
}
js code:
sIFR.replace(rockwell, {
selector: 'h1'
,css: [
'.sIFR-root { text-align: right; leading: -14; }'
,'a { text-decoration: none; }'
,'a:link { color: #000000; }'
,'a:hover { color: #ff5400;; }'
]
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我自己找到了修复方法。不太整洁,但它有效:
在 h1 上设置一个高度,overflow:hidden 就可以了
Found the fix myself. Not to neat, but it works:
set a height on the h1, overflow:hidden and it works