Home > Web Front-end > HTML Tutorial > CSS选择器相关知识_html/css_WEB-ITnose

CSS选择器相关知识_html/css_WEB-ITnose

WBOY
Release: 2016-06-21 09:04:29
Original
1024 people have browsed it

一,派生选择器

li strong {    font-style: italic;    font-weight: normal;  }
Copy after login

指定一个元素中的子元素的样式。这种的选择器不会因为层级关系失效。如果li中包裹了其他包裹了strong的元素,那么strong元素的样式还是生效的。

h1 > strong {color:red;}
Copy after login

和派生选择器的功能差不多,不同的是,多层包裹的话不会生效。只有在h1中包裹的strong元素才能生效。

h1 + p {margin-top:50px;}
Copy after login

相邻兄弟选择器。拥有同一个父级元素的兄弟元素都能对该样式声明生效。

二,id选择器

#sidebar p {	font-style: italic;	text-align: right;	margin-top: 0.5em;	}
Copy after login

上面的时id选择器和派生选择器结果,得到的结果就是,id为sidebar的元素中的p元素样式为上述的样式。

三,类选择器

.fancy td {	color: #f60;	background: #666;	}
Copy after login

这个例子的意思为,td的父级元素的class等于fancy,那么这个父元素中包裹的td元素都会使用到上述的

td.fancy {	color: #f60;	background: #666;	}
Copy after login

基于td元素使用了fancy样式。

四,属性选择器

[title]{color:red;}
Copy after login
input[type="text"]{  width:150px;  display:block;  margin-bottom:10px;  background-color:yellow;  font-family: Verdana, Arial;}input[type="button"]{  width:120px;  margin-left:35px;  display:block;  font-family: Verdana, Arial;}
Copy after login






Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template