博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Getting to Know CSS - Common CSS Property Values
阅读量:5785 次
发布时间:2019-06-18

本文共 1329 字,大约阅读时间需要 4 分钟。

Colors

  • Keywords

  • Hexadecimal

  • RGB

  • HSL

Keywords

  • Like red,black

  • The keywords notation provide limited options and thus are not the most practice

.task {  background: maroon;}.count {  background: yellow;}

Hexadecimal

  • Start with #, followed by three or six character

clipboard.png

.task {    background: #800000; }  .count {     background: #ff0; }

RGB

  • RGB color values are stated using the rgb() function, r means red, g means green, b means blue.

  • The integer from 0 to 255.

  • The RGB values also include an alpha, change by using the rgba().

  • The fourth value between 0 and 1.

.task {  background: rgb(128, 0, 0);}.count {  background: rgb(255, 255, 0);}
.task { background: rgba(128, 0, 0, .25);}.count { background: rgb(255, 255, 0, 1);}

HSL & HSLa Colors

.task {  background: hsl(0, 100%, 25%);}.count {  background: hsl(60, 100%, 50%);}
  • The first value represent the color wheel

  • The second and third values, the saturation(饱和度) and lightness(亮度)

Length

  • Absolute Lengths

  • Relative Lengths

Absolute Lengths

  • Pixels

  • cm

  • in

  • mm

The pixel is equal to 1/96 of an inch, thus there are 96 pixels in an inch

p {    font-size: 14px;}

Relative Lengths

  • em

  • %

.col {    width: 50%; /* Base your parent element width */}
.banner {    font-size: 14px;    width: 5em;  /* The em unit relative to the font size of the closest parent elment with a stated font size */}

转载地址:http://gjtyx.baihongyu.com/

你可能感兴趣的文章
win7 64位安装vs2013 出现'System.AccessViolationException的错误
查看>>
1077 互评成绩计算 (20 分)
查看>>
<script> 的defer和async
查看>>
五子棋算法
查看>>
详解zkw算法解决最小费用流问题
查看>>
LeetCode:14. Longest Commen Prefix(Easy)
查看>>
NSValue
查看>>
Windows平台分布式架构实践 - 负载均衡
查看>>
简单实用UML关系图解
查看>>
MAVEN学习笔记
查看>>
前端面试题十七
查看>>
HDU 2177 取(2堆)石子游戏
查看>>
hdu 3966 Aragorn's Story 树链剖分 按点
查看>>
17.8.12第六次测试
查看>>
如何等待ajax完成再执行相应操作
查看>>
4位共阴极数码管的动态扫描电路VHDL设计
查看>>
基于Gulp + Browserify构建es6环境下的自动化前端项目
查看>>
Http上传 vs Ftp上传
查看>>
在octave语言中K-means聚类算法求聚类中心的向量化计算
查看>>
人工智能不是武功秘籍!
查看>>