具有继承inherit的CSS属性汇总

On 2009年06月24日, in XHTML&CSS, by Kane

什么是继承 inherit?

意思就是你在某个elements上添加了以下的css 属性,那么这个 elements 下面的所有子元素都会继承这个css属性。最典型的就是 color 这个属性。现在汇总一下,以后写css的时候,就可以更放心了。


	/*常用*/
	color:;
	text-indent:;
	text-align:;
	line-height:;
	list-style-type:;
	list-style-image:;
	list-style-position:;
	list-style:;
	cursor:;

	/*不常用*/
	direction:;
	text-transform:;
	word-spacing:;
	white-space:;
	letter-spacing:;
	caption-side:;
	border-spacing:;
	empty-cells:;
	border-collapse:;
	speak-header:;
	page-break-inside:;
	page:;
	orphans:;
	widows:;
	volume:;
	speak:;
	azimuth:;
	quotes:;
 

Leave a Reply