Change the Font Size of an Element - zilongxuan001/LearnFreecode GitHub Wiki
理解
设置元素的文字大小
文字大小的CSS形式如下
h1 {
font-size; 30px;
}
h1
表示是设置元素h1的样式
font-size
表示设置都是字体大小属性
30px
说明字体大小为 30px, px 即pixels,像素
来源
Basic CSS: Change the Font Size of an Element | Learn freeCodeCamp
CHANGELOG
2018-9-29 16:55:51