利用CSS讓整體區塊改變字型大小樣式
要同批改變超連結字體大小,可使用CSS方式如以下:
<style>
#myid{ font-size:16px; }
.myclass{ font-size:20px; }
.a{font-size:22px; }
</style>
<html>
<a href="#">字大小為22px</a>
<div id="myid">字體大小為16px</div>
<div class="myclass">字體大小為20px</div>
</html>
參考資料
https://www.w3schools.com/css/css_font.asp
<style>
#myid{ font-size:16px; }
.myclass{ font-size:20px; }
.a{font-size:22px; }
</style>
<html>
<a href="#">字大小為22px</a>
<div id="myid">字體大小為16px</div>
<div class="myclass">字體大小為20px</div>
</html>
參考資料
https://www.w3schools.com/css/css_font.asp