Blogger Information
Blog 26
fans 0
comment 1
visits 20549
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
3月21日作业
木易阳的博客
Original
785 people have browsed it

3月21日作业:基本选择器,属性选择器

实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>基本选择器和属性选择器</title>
	<style type="text/css">
		ul {   
			padding: 0;
			margin: 0;
			width: 450px;
			border: 1px dashed #666;
			padding: 10px 5px;
		}

		ul:after { 
			content:''; 
			display: block; 
			clear:both; 
		}
		
		li { 
			list-style: none; 
			float: left;
			width: 40px; 
			height: 40px; 
			line-height: 40px; 
			text-align: center; 
			border-radius: 50%;				
			background: skyblue; 
			margin-right: 5px; 
		}
	
		#item1 {
		}

		.green {
		}
		
		ul li {  
			color: white;
		}

		ul * {
		}

		ul > li { 
			background-color: blue;
		}

		#item2 + li {
			background-color: black; 
		}
		
		#item2 ~ li {
			background-color: coral; 
		}

	</style>
</head >
<body >
	<ul>
		<li id="item1">php</li>
		<li class="green">中</li>
		<li class="green">文</li>
		<li class="">网</li>
		<li>欢</li>
		<li id="item2">迎</li>
		<li>你</li>
		<li>的</li>
		<li>观</li>
		<li>看</li>
	</ul>

</body>
</html>

运行实例 »

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

手抄基本选择器案例代码

微信图片_20180326174253.jpg微信图片_20180326174238.jpg

Correction status:Uncorrected

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