Blogger Information
Blog 56
fans 3
comment 1
visits 50664
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
3_21 css选择器
沈斌的博客
Original
732 people have browsed it

实例

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title>basic selector</title>
	<style type="text/css">
		
		#title {
			color: blue;
			width: 300px;
			height: 40px;
		}

		.content {
			background-color: lightgreen;
		}

		ul li {
			text-indent: 2em; 
			text-align: center;
			line-height: 42px;
		}

		ul * {
			/*width: 60%;*/
			font-size: 90%;
			border: 1px solid blue;
		}

		ul > li {
			width: 300px;
			height: 40px;
			
		}

		#item2 + li {
			color: coral;
		}

		#item3 ~ li {
			color: lightgreen;
		}



		li[id="item1"] {
			background-color: yellow;
		}

		li[id~="item2"] {
			color: brown;
		}

		li[class^="st"] {
			color: purple;
		}

		li[class$="nd"] {
			color: red;
		}

		li[id *="tain"] {
			color: blue;
		}

	</style>
</head>
<body>
	
		<h2 align="center" id="title">菜单</h2>
		<ul type="none">
			<li class="star">青椒肉丝</li>
			<li id="item1">土豆丝</li>
			<li id="contain">木须肉</li>
			<li class="end">水煮牛肉</li>
			<li id="item2">红烧牛肉</li>
			<li id="item3">烧茄子</li>
			<li>西红柿炒鸡蛋</li>
			
		</ul>
	
</body>
</html>

运行实例 »

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

selector.JPG

Correction status:qualified

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