【CSS】font-size - 文字のサイズ
CSSのfont-sizeプロパティについて解説します。
検証環境
font-size
font-sizeは“文字のサイズ”のプロパティです。
基本構文
font-size: 値;
サンプル
文字サイズを36pxに設定するサンプルです。
<style>
p {
___ih_hl_start
font-size: 36px;
___ih_hl_end
}
</style>
<p>CSS : Cascading Style Sheets</p>