CSS样式表怎么做

html-css010

CSS样式表怎么做,第1张

在网页中使用CSS:

一、内部规则 - 直接写在网页文件内部的样式

1.将以下代码插入在与之间可设定此页的默认的样式

2.在HTML行中加入样式规则

如:

Amaze your friends!

二、外部规则 - 独立的样式表文件

1.链接样式表文件

方法:在内使用标签:

如:

并建立一个文本文件,起名mystyles.css (和上面对应)。文件内容如:

H1 { color: greenfont-family: impact }

P { background: yellowfont-family: courier }

2.输入样式表文件(返回)

方法:在内插入列代码:

并建立一个文本文件,起名company.css (和上面对应)。文件内容如:

H1 { color: greenfont-family: impact }

P { background: yellowfont-family: courier }

可见该种方法的好处是可与网页的内部样式共存。

三、CSS举例

指定全文的文本格式:

body{background: yellowcolor=redfont-size=9pt}

指定局部的默认的文本格式:

P{...}

H1{...}

TH{...}

TD{...}

...

指定超链接的样式:

A:link {text-decoration: nonecolor:#0000FFfont-family: 宋体}

A:visited {text-decoration: nonecolor: #800000font-family: 宋体}

A:active {text-decoration: nonecolor: #FF0000font-family: 宋体}

A:hover {text-decoration: underlinecolor:#FF0000}

推荐你可以上菜鸟教程官网学习

<html>

<head>

<style type="text/css">

a.top:link {font-family: 宋体} /*链接字体*/

a.top:link {font-weight: normal} /*设置链接文字中的字符粗细*/

a.top:link {font-size: 12} /*设置链接文字的大小*/

a.top:link {text-decoration: none} /*设置链接文字没有下划线*/

a.top:hover {text-decoration: underline} /*鼠标放在链接上时有下划线*/

a.top:link {color: #000000} /*设置链接文字的颜色*/

a.top:visited {color: #000000} /*访问过的链接*/

a.top:hover {color: #B50000} /*鼠标放在链接上字体的颜色*/

a.tj:link {font-family: 宋体}

a.tj:link {font-weight: normal}

a.tj:link {font-size: 12}

a.tj:link {text-decoration: none}

a.tj:hover {text-decoration: none}

a.tj:link {color: #000000}

a.tj:visited {color: #0000ff}

a.tj:hover {background: #FFFFCC}

h1 {font-size:12px} 

h1 {font-family: "宋体"} 

h1 {font-weight: normal}

h1 {color: #000000}

h2 {font-size:14px} 

h2 {font-family: "宋体"} 

h2 {font-weight: normal}

h2 {color: #000000}

h3 {font-size:24px} 

h3 {font-weight: 1}

h3 {color: #000000}

body {

        margin-top: 1px /*上边距*/

        margin-bottom: 1px /*下边距*/

}

</style>

<meta http-equiv="Content-Type" content="text/html charset=gb2312"></head>

<body>

<p>Mouse over the links to see them change layout.</p>

<p><b><a href="default.asp" target="_blank" class="top">电脑对怀孕其实没啥影响</a></b></p>

<p><b><a href="default.asp" target="_blank" class="tj">电脑对怀孕其实没啥影响</a></b></p>

<h1>电脑对怀孕其实没啥影响</h1>

<h2>电脑对怀孕其实没啥影响</h2>

<h3>电脑对怀孕其实没啥影响</h3>

</body>

</html>