Return to Snippet

Revision: 50983
at September 10, 2011 06:23 by rigobcastro


Initial Code
/* non-style for "Required" inputs in Firefox, Chrome and Opera */  
input:required, 
textarea:required {  
	-moz-box-shadow:none;  
	-webkit-box-shadow:none;  
	-o-box-shadow:none;  
	box-shadow:none;  
	outline:none 0;
}  
      
/* Styling "Placeholder" input in Chrome and Safari */  
::-webkit-input-placeholder { color:#333; font-style:italic;}  
  
/* Styling "Placeholder" input in Firefox */   
input:-moz-placeholder, 
textarea:-moz-placeholder { 
	color:#333; font-style:italic; 
}

Initial URL


Initial Description
CSS3 Normalize for Required and Placeholder...

Initial Title
Style for Required inputs and Placeholder

Initial Tags
CSS3

Initial Language
CSS