“CSS 2.1 参考手册/属性数据类型”的版本间的差异

来自Blueidea
跳转至: 导航搜索
百分比: 新增内容
字符串: 新增内容
第117行: 第117行:
  
 
==字符串==
 
==字符串==
 +
写在单引号或双引号中的文字:
 +
<source lang="css">
 +
"Hello World!"
 +
'Hello World!'
 +
"I'm here"
 +
'Jack said "Hello"'
 +
</source>
 +
 +
双引号不能出现在双引号中,只能用 \" 或者\22 :
 +
<source lang="css">
 +
"Jack said \"Hello\""
 +
"Jack said \22Hello\22"
 +
</source>
 +
 +
单引号不能出现在单引号中,只能用 \" 或者\27 :
 +
<source lang="css">
 +
'I\'m here'
 +
'I\27m here'
 +
</source>
 +
 
==时间==
 
==时间==
 
==网址==
 
==网址==

2007-11-16T14:55:08的版本

数字和下面角度单位:

deg

度数

grad

梯度

rad

弧度

如果值为0,单位可以忽略,例如:“0 deg”可以写成“0”。


颜色

关键字或者数字型的RGB规范。

关键字:

aqua

aqua.gif

black

black.gif

blue

blue.gif

fuchsia

fuchsia.gif

gray

gray.gif

green

green.gif

lime

lime.gif

maroon

maroon.gif

navy

navy.gif

olive

olive.gif

orange

orange.gif

purple

purple.gif

red

red.gif

silver

silver.gif

teal

teal.gif

white

white.gif

yellow

yellow.gif

以下是用不同的方法实现红色:

em {color: red}
em {color: rgb(255,0,0)}
em {color: #f00}
em {color: #ff0000}
em {color: rgb(100%, 0%, 0%)}

计数

频率

正数和下面的频率单位表示:

Hz

赫兹

kHz

千赫兹

如果值为0,单位可以忽略,例如:“0 Hz”可以写成“0”。

标识符

整数

长度

数字

百分比

跟着“%”的数字,例如:

120%

字符串

写在单引号或双引号中的文字:

"Hello World!"
'Hello World!'
"I'm here"
'Jack said "Hello"'

双引号不能出现在双引号中,只能用 \" 或者\22 :

"Jack said \"Hello\""
"Jack said \22Hello\22"

单引号不能出现在单引号中,只能用 \" 或者\27 :

'I\'m here'
'I\27m here'

时间

网址

原帖地址:http://xhtml.com/en/css/reference/property-data-types/