Change the Color of Text - zilongxuan001/LearnFreecode GitHub Wiki
使用内联样式(inline style),修改标题样式
<h2 style="color: blue">CatPhotoApp</h2>
其中,
<h2></h2> 是标题元素;
style=" " 是内联样式;
color: XXXX 说明设置的是颜色样式;
blue 说明标题的文字颜色;
CatPhotoApp 是标题文字,会显示在网页中。
Basic CSS: Change the Color of Text | Learn freeCodeCamp
2018-9-29 16:42:34