Blogger Information
Blog 5
fans 0
comment 1
visits 3039
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
HTML文档结构 链接外部文件(基本标签和类选择器使用-2018.8.10
圈圈小竹子的博客
Original
762 people have browsed it

在设计简单的web页面时,html和css的布局是必不可分的。其中不同标签和属性的使用方法及作用更是与网站页面紧密关联。本篇就是HTML/CSS中相关基础标签和属性使用方法进行总结。

实例
<!DOCTYPE html> <!-- xml xhtml 声明 --><!--注释的快捷键: ctrl+/ -->

<html>

<head><!-- 定义网页头部 -->

	<title>php中文网——视频教程</title>

	<meta charset="utf-8"><!-- 字符集编码 -->

	<!-- link:定义文档与外部资源的关系 链接外部文件 -->

	<link rel="stylesheet" type="text/css" href="static/style.css">

	<!-- 链接外部css样式表  外部样式:为了共享 -->	

	<link rel="shortcut icon" type="image/x-icon" href="images/footlogo.png">

	<!-- 在title内部放入图片 -->

	<style type="text/css">/*内部样式:只针对当前页面*/

		/*tag标签名、id名(名字前面加 #) class名  属性选择器*/

		body{}/*标记选择器*/

		#box{width:100px;height: 100px;background: pink; }/*id选择器*/

		.main{width:100px;height: 100px;background: green; }/*class选择器  类*/

		

		a{color: red;}

		/*属性选择器*/

		a[href="http://www.php.cn/"]{color:blue;}

        a[href="demo2.html"]{color:pink; }

        /*派生选择器 根据文档上下文关系来定义样式*/

        div a{color: #000;}

        #box a{}


	</style>

</head>

<body ><!-- 内联样式 style="background: blue;"-->

<img src="">

<a href="https://www.baidu.com">百度</a><!-- 链接到百度 -->

<a href="http://www.php.cn/">php中文网</a>

<a href="demo2.html">demo2</a><a href="#">#</a><!-- 链接到外部文件 -->


<div id="box">

	<a href="">php</a>

</div>

<div class="main"></div>

<div></div>

<div></div>

</body>

</html>
运行实例 »
点击 "运行实例" 按钮查看在线实例


手写:

微信图片_20180811184150.jpg微信图片_20180811184139.jpg

上述代码中涉及知识点注释总结:

  1. <!DOCTYPE html>除HTML类型外,还有xml、xhtml。(声明文件类型)

  2. HTML中选择器区别

    body{} 指的是标记选择器 标签选择器

    #box{} #指的是ID选择器

    .main{} .表示class选择器 类选择器(类名选择器的优先级要低于ID选择器)

    a[]{} 表示属性选择器

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
1 comments
灭绝师太 2018-08-13 15:07:29
很努力,很认真,继续保持 我们一起加油
1 floor