当前位置: 首页 > 网络学院 > 网页制作基础教程 > WEB设计综合 > 文本和颜色

WEB设计综合
如何设置滚动条的样式?
鼠标经过改变表格背景属性
关闭IE中探出的图形工具栏
去掉链接中的下划线
CSS 常用布局
Meta 标签
自动刷新、转向
除去打印脚本
IP阻止
指针样式
定义滚动条样式
链接效果
框架中的“target”
开启DW中的无效行为
IFrames 简介
透明 IFrames
超链接效果
基于浏览器类型实现页面的重定向
HTML基本原则
图像边框

WEB设计综合 中的 文本和颜色


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-03-01   浏览: 1344 ::
收藏到网摘: n/a

Text
文本

You could leave text unformatted, but it looks bad. In order to use different fonts and sizes, follow the code below.
你可以保留未定义格式的文本,但是,这看上去并不美观。为了能够使用不同的字体和尺寸,你需要使用下面这样的代码:

<font face="Verdana" size="1">


I recommend that you place more then one font, seperated by commas, as shown below. With this, if the viewer's computer doesn't have the font you are using, it has alternative choices. I'd always try to use common fonts that everyone should have.
我建议你想下面演示的这样使用多种字体,并通过逗号分开。这样一来,如果浏览者的电脑中并不包含首个字体,那么他就会自动选择替代字体。我通常尝试使用所有电脑中都支持的字体。

<font face="Verdana, Arial" size="2">


In action....
继续…

<font face="Verdana, Arial" size="2">Text Goes here</font>


Text Goes here
上述代码对应的文本演示结果

Color
颜色

popular_colors
当前流行色


Adding color to text and backgrounds are very simple.
为文本和背景添加颜色是非常容易的。

<font face="Verdana, Arial" size="1" color="#990033">Text Goes here</font>


Text Goes here
上述代码对应的文本演示结果

Adding Color to backgrounds:
为背景添加颜色:

<body bgcolor="#FFFFFF">


As you can see, you place the bgcolor command in the body tag. You can use this same command in tables, which you will learn about later.
正如你所看到的那样,你将bgcolor命令加入了body标签中。你在可以table[表格]中使用相同的命令,我们将在后期将你具体的使用方法。

评论 (0) All

登陆 | 还没注册?