Remove only one border on input element - HTML CSS CSS Widget

HTML CSS examples for CSS Widget:Border Style

Description

Remove only one border on input element

Demo Code

ResultView the demo in separate window

<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>

Related Tutorials