我有以下代碼:CSS字體大小沒有被應用在移動
HTML
<div class="footer">
<div class="terms">
<a href="terms.html" class="footer-text">Terms of Service</a>
</div>
<div class="contact">
<a href="mailto:[email protected]?Subject=theWhoZoo%20query" target="_top" class="footer-text"><img class="email-icon" alt="Email" src="images/icon_email.png">[email protected]</a>
</div>
</div>
CSS
.footer-text {
font-size: 85%;
}
當我在瀏覽器中運行這個我的Mac或PC,它完美的工作,即字體是正確的大小。但是,在手機上的Chrome中,字體爲100%,即85%沒有被應用。
如果任何人都可以告訴我應該怎樣,而組織我的代碼,我將不勝感激。
如何有你定義了全局字體大小?像你有某種形式的身體{font-size 16px;}?此外,你使用像素爲您的字體大小或EM?我會建議他們,因爲它是可擴展的。 – Rubenxfd
嗨Ruben,我沒有定義全局'font-size'。 – Richard