Microsoft Technology, .Net, BizTalk, Sharepoint & etc.

Liedong(Ken) Zheng, Senior SharePoint Developer at SIMPLOT

Archive for December 17th, 2008

Quick CSS Reference

Posted by ken zheng on December 17, 2008

Selector {Declaration}  	H1 {color: red}  	Any H1 tag used in the site (<H1>)

Selector.Class {Declaration} 	H1.Alert {color: red}  	Any H1 tag that uses the class name of Alert (<HI Class="Alert">)
-OR- 	-OR-
.Class {Declaration} 	.Alert {color: red} 	Any tag that uses the class name of Alert (<XXX Class="Alert">)

Selector#ID {Declaration} 	H1#Alert {color: red}  	A H1 tag that uses the ID Alert (<HI ID="Alert">)
-OR- 	-OR-
#ID {Declaration} 	#Alert {color: red} 	A tag that uses the ID Alert (<XXX ID="Alert">)

More details read here

Posted in Uncategorized | 1 Comment »