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;
    }

「9 月」は応答していないものです。それはもっと大きいはずです。

ライブバージョンはこちら

4

3 に答える 3