millsturtle
New Member
Normally we use this idea (different classes separating with comma) .Test, .test1 {} , But here it will work fine only we call classes separately.Why this issue ?Demo here http://jsfiddle.net/6AR8n/\[code\]/* seperate classes */#red input:-moz-placeholder{ color:red;}#red input::-webkit-input-placeholder{ color:red;}/* Classes with coma */#green input:-moz-placeholder, input::-webkit-input-placeholder{ color:green;}<div id="red"> <input type="text" placeholder="Without Coma" ></div><br> <div id="green"> <input type="text" placeholder="Coma" ></div>\[/code\]