博主信息
博文 28
粉丝 1
评论 0
访问量 21554
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
2019.4.25作业
关超的博客
原创
704人浏览过
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>CSS中的常用选择器</title>
<style type="text/css">
	.div1{width:80px ; height:80px; background-color:#ccc;}  
	#div2{width:80px ; height:80px; background-color:pink;}
	p{ background-color:green;}
	p[id="divid"]{ background-color:red;}
	.div3{width:80px ; height:80px; background-color:yellow;}
	.div3 span{ background-color:#ff6700;}
	h3:first-of-type{ background-color:lightblue;}
	h3:last-of-type{background-color:lightgreen;}
	h4:nth-child(4){ background-color:lightgreen;}
	.div5{ background-color:#ccc;}
	li:nth-of-type(3){ background:wheat;}
</style>
</head>

<body>
    <div class="div1">
    </div>
    <div id="div2">
    	<p>我是P元素</p>
        <p id="divid">我是P元素</p>
    </div>
    <div class="div3">
    	<span >1</span>
        <span>2</span>
        <span>3</span>
    </div>
	<h3>1</h3>
	<h3>2</h3>
	<h3>3</h3>
	<div class="div4">
        <h4>1</h4>
        <h4>2</h4>
        <h4>3</h4>
        <h4>4</h4>
        <h4>5</h4>
    </div>
    <div class="div5">
    	<ul>
        	<li>1</li>
        	<li>2</li>
        	<li>3</li>
        	<li>4</li>
        	<li>5</li>                                                
        </ul>
    </div>
</body>
</html>

QQ图片20190425230652.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+教程免费学