CSS3 in Firefox 1.0

Substring matching attribute selectors in Firefox 1.0

W3C Documenation

Example Uses
a[target="_blank"] {color: red; background: #ddd; target: parent}

Target is _blank All anchor tags with a target=blank will get this style.

input[type^="password"] {background: #efefef!important;
font-size: .55em; }
CSS
li[id^="nl"] {border: 1px solid red; }
li[id$="-2"] {background: yellow; }
HTML
<ul id="nlt">
	<li id="nl-1">Linkone</li>
	<li id="nl-2">linktwo</li>
	<li id="nl-3">linkthree</li>
</ul>

	
  • Linkone
  • linktwo
  • linkthree
target pseudo-class in Firefox 1.0
See Example from Andreas
h2 span {display: none; }
h2:target span {display: inline; color: #cc0; }
			
Lorem ipsum dolor about sit amet, consectetuer adipiscing elit.
Opacity property in Firefox 1.0
.clear:hover {opacity: .55; }
			
Email Image
Content Property with :before or :after pseudo-class in Firefox 1.0
Example
.mm a:after {
 content:"\00BB";
 color:#c93;
 white-space:nowrap;
 padding-left:2px;
			  }