Input text with CSS

We don’t need javascript for input box hover,focus style. We can use with CSS.It’s more easy and useful than javascript. input[type=text] {/* CSS Code Here */ } type=text mean for input type=text only. You can alos use foucs and hover for that. input[type=text]:focus {/* CSS Code Here */ } input[type=text]:hover { /* CSS Code Here [...]