Blogger Information
Blog 18
fans 0
comment 0
visits 9936
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
HTML基础结构及CSS选择器2018年8月10日作业
吕小布的博客
Original
511 people have browsed it

微信图片_20180813120510.jpg实例

<!DOCTYPE html><!-- 说明以下为html内容 -->
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title><!-- 标题 -->
	<link rel="stylesheet" type="text/css" href=""><!-- 引入外部样式 -->
	<link rel="shortcut icon" type="image/x-icon" href="">
	<!-- 引入网页头图标 -->

	<style type="text/css">/*内部样式*/
	body{wdith:300px; height:300px;background:blue;}/*标签选择器*/
	#box{width:100px; height:200px;background:pink;}/*ID选择器*/
	.main{width:100px; height:100px;background:green;}
	/*类选择器*/
	a[href="www.baidu.com"]{color: pink;}/*属性选择器*/
	div a{color:#000;}/*子类选择器*/
</style>
</head>
<body style="background:#fff"><!-- 内联选择器 -->
	<div id="box"></div>
	<div class="main"></div>
	<div>
		<p>你好世界</p>

	</div>
	<div><a href="www.baidu.com">百度</a></div>
	
</body>
</html>

运行实例 »

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

 

Correction status:unqualified

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