博主信息
博文 14
粉丝 0
评论 0
访问量 12311
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
0810作业-HTML标签&CSS选择器练习
笨笨的博客
原创
1162人浏览过

实例

<!DOCTYPE html>  <!-- 文档类型声明  表示当前文档类型为html -->
<html lang="zh-cn">   <!-- 声明当前页面的语言类型为简体中文 -->
<head>
	<meta charset="UTF-8">    <!-- 声明当前页面的编码格式为UTF-8 -->
	<title>第一天的作业</title>   <!-- 设置页面标题 -->
	<link rel="stylesheet" type="text/css" href="style/css.css">  <!-- 引入外部样式表 -->
	<link rel="shortcut icon" type="image/x-icon" href="image/icon.jpg">  <!-- 为浏览器标签页加图标 -->
	<style>  /*内部样式,只对当前页面有效*/
		body{
			background-color:pink;
		}
		/*标记选择器 div*/
		div{
			border:5px solid #f00;
		}
		/*类选择器 .circle1*/
		.circle1{
			position: relative;
			margin:100px;
			float:left;
			width:150px;
			height:150px;
			border-radius:50%;
			-webkit-border-radius:50%;
			-moz-border-radius:50%;
		}
		/*id选择器 #circle2*/

		#circle2{
			position: relative;
			margin:100px;
			float:left;
			width: 150px;
			height: 150px;
			border-radius:50%;
			-webkit-border-radius:50%;
			-moz-border-radius:50%;
		}
		/*兄弟选择器*/
		#circle2+div{
			width: 200px;
			height: 50px;
			margin:150px 0 0 260px;
			clear:both;
			position: relative;
			overflow:hidden;
		}
		/*后台选择器*/
		#circle2+div a{
			display: block;
			position: absolute;
			border:5px solid #f00;
			width: 80px;
			height: 80px;
			bottom:-60px;
			left:50%;
			margin-left:-40px;
			text-indent:-9999px;
			border-radius:50%;
			-webkit-border-radius:50%;
			-moz-border-radius:50%;
			background:#f00
		}
		/*属性选择器*/
		i[class="zhu"]{
			display: block;
			position: absolute;
			border:30px solid #f00;
			border-radius:50%;
			-webkit-border-radius:50%;
			-moz-border-radius:50%;
			width: 0px;
			height: 0px;
			top:10px;
			left:10px;
		}
	</style>
</head>
<body>

	<div class="circle1"><i class="zhu"></i></div>
	<div id="circle2"><i class="zhu"></i></div>
	<div>
		<a href="#">#</a>
	</div>

</body>
</html>

运行实例 »

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

展现效果:↓↓↓

QQ图片20180810222730.png

批改状态:合格

老师批语:缺少手写代码!
本博文版权归博主所有,转载请注明地址!如有侵权、违法,请联系admin@php.cn举报处理!
全部评论 文明上网理性发言,请遵守新闻评论服务协议
0条评论
作者最新博文
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号

  • 登录PHP中文网,和优秀的人一起学习!
    全站2000+教程免费学