hello i have a css style applied to a text field
font-family:"comic Sans MS";
padding-left:5px;
padding-right:5px;
width:120px;
height:20px;
font-size:12px;
background-repeat:no-repeat;
border:none;
background-image: url(../../images/textField.png);
background-color: transparent;
width is 120px because thats the size of the image. however if to many characters are typed it goes right over the image.
i have size declared also in html as 15 characters. if i remove the css class the html size attributr works fine. but when the class is applied it does not. any help is appreciated thanks.
font-family:"comic Sans MS";
padding-left:5px;
padding-right:5px;
width:120px;
height:20px;
font-size:12px;
background-repeat:no-repeat;
border:none;
background-image: url(../../images/textField.png);
background-color: transparent;
width is 120px because thats the size of the image. however if to many characters are typed it goes right over the image.
i have size declared also in html as 15 characters. if i remove the css class the html size attributr works fine. but when the class is applied it does not. any help is appreciated thanks.