样式语法规则
:
详细资料(http://www.w3school.com.cn/css/index.asp)
选择器包括
.类名{声明属性:属性值} .classname{width:120px;}
#id名{声明属性:属性值} #idname{height:auto;}
HTML标签{声明属性:属性值} h1{color:#fff,font-size:12px;}
样式定义,让网页呈现丰富色彩。
页面制作
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="format-detection" content="telephone=no">
<meta name="format-detection" content="email=no">
<title>文档的标题</title>
</head>
<body>
<!-- 文档的内容..... -->
<div
id="id1"
>我是每一个标签都在这儿写一遍,在<span
title="关键字"
style="font-size:16px;color:#00FF00">Macromedia Dreamweaver MX 2004 </span>里,按F12 进行每个标签浏览效果!</div>
</body>
</html>
红色标注的style规范来说,这个是不合适的。专业人员在样式编写,网页布局时id都很少使用,因为有可能与javascript脚本命名冲突。style属性也不使用。
页面的制作,会规范好文件的存放。
结构如下:
web\
web\images\
web\css\
web\js\
web\index.html
index.html页面内容如下
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="format-detection" content="telephone=no">
<meta name="format-detection" content="email=no">
<title>文档的标题</title>
<link rel="stylesheet" type="text/css" href="/css/page.css">
<!--
样式文件引用
-->
<script type="text/javascript" src="/js/index.js"></script>
<!--
脚本样式引用
-->
</head>
<body>
<!-- 文档的内容..... -->
<div class="main"
>我是每一个标签都在这儿写一遍,在<span
title="关键字">Macromedia Dreamweaver MX 2004 </span>里,按F12 进行每个标签浏览效果!</div>
</body>
</html>