jquery - background for text area using HTML5 and CSS3 -


i placed background textarea borders black, changed border radius , did few other styling. end result shows line on top of customized text area , not sure how remove it. can please help? sure didn;t place line myself. css:

#login {     height:5%;     font-family: arial, helvetica, sans-serif;     font-size: 14px;     color: black;     position:absolute;     padding-left:3%;     left:0%;     width:97%;     height:32px;     background: -moz-linear-gradient(         top,         #ffffff 0%,         #ffffff 25%,         #ffffff 50%,         #ffffff 75%,         #dadce8     );     background: -webkit-gradient(         linear, left top, left bottom,          from(#ffffff),         color-stop(0.25, #ffffff),         color-stop(0.50, #ffffff),         color-stop(0.75, #ffffff),         to(#dadce8)     );     -moz-border-radius: 4px;     -webkit-border-radius: 4px;     border-radius: 4px;     border: 1px solid #000000;     -moz-box-shadow:         0px 3px 11px rgba(000,000,000,0.5),         inset 0px 0px 1px rgba(0,0,0,1);     -webkit-box-shadow:         0px 3px 11px rgba(000,000,000,0.5),         inset 0px 0px 1px rgba(0,0,0,1);     box-shadow:         0px 3px 11px rgba(000,000,000,0.5),         inset 0px 0px 1px rgba(0,0,0,1);     text-shadow:         0px -1px 0px rgba(000,000,000,0.2),         0px 1px 0px rgba(255,255,255,0.3);     } 


Comments

Popular posts from this blog

Unable to remove the www from url on https using .htaccess -