CSS:字体样式(字体系列、大小、加粗、风格、变形等)

CSS:字体样式(字体系列、大小、加粗、风格、变形等)

时间 2014-12-10 14:56:32  CSDN博客

原文  http://blog.csdn.net/books1958/article/details/41806019

主题 CSS

CSS 字体属性定义文本的(如斜体)和变形(如小型大写字母)

代码整理自w3school

http://www.w3school.com.cn

"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http-equiv="Content-Type"content="text/html; charset=utf-8" />http-equiv="Content-Language"content="zh-cn" /></span><span style="color:#333333;">CSS </span><span style="color:#333333;">字体</span><span style="color:#000080;">

这是h1标题,将应用monospace字体。

这是一个普通的段落,将应用指定于body的通用字体:sans-serif

h5标题:Georgia字体(若电脑中无该字体,则以serif字体显示)

class="italicFont">文本斜体显示

class="obliqueFont">文本倾斜显示

注:通常情况下,italic oblique 文本在 web 浏览器中看上去完全一样。


字体变形

class="normalVariant">This is a paragraph.

class="smallCaps">小写字母转为大写字母,字体大小不变:This is a paragraph.

字体加粗

class="bold100">font-weight:100的文字。

class="bold900">font-weight:900的文字。


字体大小,绝对值:px 相对值:em (1em 等于当前的字体尺寸)

id="bg_01">id="pix16">文本大小:16px

id="pix20">文本大小:20px

id="bg_02">id="em0_8">文本大小:0.8em

id="em1">文本大小:1em

id="em2">文本大小:2em

效果图:

CSS:字体样式(字体系列、大小、加粗、风格、变形等)_第1张图片

 

你可能感兴趣的:(css)