Disable style in CSS
Dec 12
Today I've found that how to create CSS for disable input form. It's very useful and we can do separate class for those event. Here is CSS for normal input event.
2 color: #000000;
3 border: solid 1px #999999;
4}
5
6select {
7 color: #000000;
8 border: solid 1px #999999;
9}
And here is CSS for disabled event. At that time, syntax is different for text input and select button.
2 color: #000000;
3 border: solid 1px #ffffff;
4}
5
6select[disabled] {
7 color: #000000;
8 border: solid 1px #ffffff;
9}
Hope it will be useful for you if you don't know yet about it.

Android
Top of Page