HTML CSS examples for CSS Widget:Border Style
Remove only one border on input element
<html> <head> <title>Boarders</title> <style type="text/css"> #input2 {<!-- w ww . ja va2 s .co m--> border: 1px solid #ABADB3; border-right: 0; } </style> </head> <body> <input id="input1"> <br> <br> <input id="input2"> </body> </html>