tags:

views:

35

answers:

2

how to remove the border and transprant

+2  A: 

to remove border try this:

 border: none;
 border-color: transparent;
Haim Evgi
+2  A: 

Like this:

input {
    border: none;
    background: transparent;
}
SLaks