form borders css code example
Example 1: dashed lin in css
hr {
border:none;
border-top:1px dashed #f00;
color:#fff;
background-color:#fff;
height:1px;
width:50%;
}
Example 2: add border to input css
border: none;
border-bottom: 1px solid blue;