批改状态:合格
                        老师批语:缺少手写代码!记得补上!!
                    
                            
第一次作业
代码:
<!DOCTYPE html><!-- html声明 -->
<html>
<head><!-- 定义网页头 -->
	<meta charset="UTF-8">
	<title>PHP中文网css样式</title>
	<link rel="stylesheet" type="text/css" href="static/style.css"><!-- 外部样式:共享 -->
	<link rel="shortcut icon" type="image/x-icon" href="images/footlogo.png">
	<style type="text/css">/*内部样式:只针对当前页面*/
          body{}/*标签名*/
          #box{width: 100px;height: 100px;background: pink;}/*id名*/
          .main{width: 100px;height: 100px;background: green;}/*类名*/
          a{color: red;}
          a[href="http://www.php.cn"]{color: blue;}/*属性选择器*/
          a[href="demo2.html"]{color: pink;}
          div a{color:#000;}/*派生选择器*/
          
	</style>
</head>
<body ><!-- 内联样式 style="background:blue"-->
	<a href="http://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>点击 "运行实例" 按钮查看在线实例
                Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号