1、新建样式表文件
你可以先建立外部样式表文件(.css),然后使用htmL的link对象。
示例如下:
<head>
<title>文档标题</title>
<link rel=stylesheet href="/dhtmlet.css" type="text/css">
</head>
2、仅对该文档
定义内部样式块对象 (embedding a style block)
你可以在你的htmL文档的<htmL>和<bodY>标记之间插入一个<stYLe>...</stYLe>块对象。
定义方式请参阅样式表语法。
示例如下:
<html>
<head>
<title>文档标题</title>
<style type="text/css">
<!--
body {font: 10pt "arial"}
h1 {font: 15pt/17pt "arial"; font-weight: bold; color: maroon}
h2 {font: 13pt/15pt "arial"; font-weight: bold; color: blue}
p {font: 10pt/12pt "arial"; color: black}
-->
</style>
</head>
<body>
从上面例子你应该可以看出两个的区别了吧,“新建样式表文件”它生成样式文件后(css文件)可以为多个文件所用,在引用时候只要在文件里加上<link rel=stylesheet href="/dhtmlet.css" type="text/css">,而“仅对该文档”,说明你的样式只对一个文档所用,样式是潜在文档中的,
至于如何创建css文件,不管你是用记事本,或者dw都是可以的,但新手建议用dw写起来比较容易
原文地址:https://www.weidianyuedu.com/content/3420415197844.html