0

出于某种原因,我的文本不会响应任何大小值:

这就是我所拥有的:

<section id="center" class="theLogo">
    <div id="responsiveLogo">September</div>
  </section>


<script src="js/fittext.js"></script>
  <script>
    jQuery("#responsiveLogo").fitText(1,{ minFontSize:'60px'});
  </script>

CSS

#center {
    position: absolute;
    width: 60%;
    height: auto;
    text-align: center;
}

#responsiveLogo {
    font-family: "utopia-std",sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 2em;
    }

“九月”是没有回应的那个。它应该更大。

现场版在这里

4

3 回答 3

0

您列出的内容不是您网站上的内容。

您错误地标记了您的 ID,或者将您的 JavaScript 更改为:

jQuery("#center").fitText(1,{ minFontSize:'60px'});

或将您的 HTML 更改为:

<section id="responsiveLogo" class="theLogo" style="top: 180px; left: 247px; font-size: 73.9px;"> ....Span Soup....</section>
于 2013-10-23T17:28:05.993 回答
0
#responsiveLogo {
    font-family: "utopia-std",sans-serif;
    font-style: normal;
    font-weight: 700px;
    font-size: 2em;
    }

用px试试

于 2013-10-23T17:28:40.200 回答
0

你需要这个吗?

#center span {
    font-size: 67px !important;
}
于 2013-10-23T17:26:41.180 回答