css的教程xx-large是什么意思?

html-css017

css的教程xx-large是什么意思?,第1张

<p align=center style="font-size:xx-large">中

<p>段落

align=center 居中显示

另外还有 align=left | right

style="……"

是样式(CSS)定义

这里的"font-size:xx-large"表示字体的大小。

见下语法

语法: font-size: <绝对大小>| <相对大小>| <长度>| <百分比>

允许值:

1、<绝对大小>有:

xx-small | x-small | small | medium | large | x-large | xx-large

(字体由小到大)

2、<相对大小>有:

larger | smaller

3、<长度>如:12pt

4、<百分比>(in relation to parent element)

第一种:.pt{font-size:24pt}

第二种:

<p style="font-size:xx-small">关键字为xx-small。</p>

<p style="font-size:x-small">关键字为x-small。</p>

<p style="font-size:smaller">关键字为smaller。表示相对尺寸。</p>

<p style="font-size:small">关键字为small。</p>

<p style="font-size:medium">关键字为medium。这是浏览器默认的字号。</p>

<p style="font-size:large">关键字为large。</p>

<p style="font-size:larger">关键字为larger。表示相对尺寸。</p>

<p style="font-size:x-large">关键字为x-large。</p>

<p style="font-size:xx-large">关键字为xx-large。</p>