Forum Moderators: not2easy
.referrals input, textarea {float:right; margin-right:30px; padding:5px; color:999;} .referrals input:hover, input:focus, textarea:hover, textarea:focus
{border-color: 1px solid #C9C9C9;
box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 8px;
-moz-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 8px;
-webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 8px;} border-color should be edited to simply "border".) (CSS level 3)
Value Error : border-color 1px is not a border-color value : 1px solid #C9C9C9
Warnings (2)
URI : TextArea
4 Property -moz-box-shadow is an unknown vendor extension
5 Property -webkit-box-shadow is an unknown vendor extension
Valid CSS information
.referrals input:hover, input:focus, textarea:hover, textarea:focus {
box-shadow : 0 0 8px rgba(0, 0, 0, 0.2);
}
The pseudo-class concept is introduced to permit selection based on information that lies outside of the document tree or that cannot be expressed using the other simple selectors.
A pseudo-class always consists of a "colon" (:) followed by the name of the pseudo-class and optionally by a value between parentheses.
Pseudo-classes are allowed in all sequences of simple selectors contained in a selector. Pseudo-classes are allowed anywhere in sequences of simple selectors, after the leading type selector or universal selector (possibly omitted). Pseudo-class names are case-insensitive. Some pseudo-classes are mutually exclusive, while others can be applied simultaneously to the same element. Pseudo-classes may be dynamic, in the sense that an element may acquire or lose a pseudo-class while a user interacts with the document.
p.classname .otherclass, p.classname .secondclass, p.classname .thirdclass p.classname otherclass, .secondclass, .thirdclass