html--基础知识(三种颜色写法)

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
/* 颜色的三种写法:
1、英文单词写法:如 red
2.数字写法 由0-9,a-f组成
3.rgb三原色表示法 取值范围:0-255 */
div{
/* background-color: red; 红色*/
/* background-color: #000000; 黑色 */
/* background-color: rgb(0,0,0); 黑色*/
}


</style>
</head>
<body>
<div>1</div>
</body>
</html>

 

posted on 2021-12-23 12:52  爱前端的小魏  阅读(279)  评论(0编辑  收藏  举报

导航