我正在使用这个jQuery倒数计时器,它在大多数情况下运行良好,但我无法弄清楚为什么倒计时的部分数字被部分隐藏。
http://techtraininghall.com/home-sound-systems-buying-guide-for-homeowners/
它不像演示中那样流畅 http://www.littlewebthings.com/projects/countdown/example/?style=light
我认为它与溢出有关,因为它倒计时但我不能确定。任何想法都非常赞赏。
答案 0 :(得分:1)
在主题的样式表中:
http://techtraininghall.com/wp-content/themes/minimum/style.css?ver=2.0.1
有一组元素的line-height
定义:
/* Defaults
------------------------------------------------------------ */
body,
h1,
h2,
h2 a,
h2 a:visited,
h3,
h4,
h5,
h6,
p,
input,
select,
textarea {
color: #555;
font-family: 'Droid Serif', arial, serif;
font-size: 14px;
font-weight: normal;
line-height: 22px;
margin: 0;
padding: 0;
text-decoration: none;
}
这会限制默认line-height:22px
,这是导致问题的根本原因。
要修复此问题,您可以在此页面中修改自定义样式:
<style id="spp-countd-header-css">
.dash .digit {margin-top: 40px;} #spp_countd_panel {display: inline-block; height: 1%;}
</style>
到:
<style id="spp-countd-header-css">
.dash .digit {margin-top: 12px; line-height: 55pt; }
#spp_countd_panel {display: inline-block; height: 1%;}
</style>