Blogger Information
Blog 16
fans 0
comment 0
visits 10629
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
html标签基础+css选择器-2018年8月11日
兔子的博客
Original
587 people have browsed it

html第一天作业

实例

<!DOCTYPE html><!--文档声明-->
<html>
<head><!--定义网页头部 头部元素的容器-->
<meta charset="UTF-8"><!--声明编码格式-->
<title>Document</title><!--标题-->
<link rel='stylesheet' type='text/css' href='style.css'><!--引入外部样式-->
<style type="text/css">/*内部样式*/
.box{width: 800px;height: 800px;background: #ccc;margin:0 auto;}/*class选择器*/
#box_s{width: 200px;height: 200px;background: green;}/*id选择器*/
a{color: red;}/*标签选择器*/
a[href="http://www.php.cn"]{color: blue;}/*属性选择器*/
</style>
</head>
<body>
<div style="border:1px solid #000" clss="box"><!--内联样式-->
<div id="box_s">
<a href="https://www.baidu.com">百度</a>
<a href="http://www.php.cn">php中文</a>
</div>
</div>
</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例

总结

1.html标签大多数为双标签有开头结束如:<div>html</div>

2.注意文档编码格式防止乱码常用编码utf-8

3.样式优先级:行业样式>内部样式>外部样式

4.class选择器可以选择多个,id选择器具有唯一性

1.jpg

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
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!