我目前有Form: including Number field, image button, and image,我想更改数字字段,以便背景是类似的图像。这是我的HTML
<form name="form1" id="form1" action="sendSMSTelstra.php" method = "post">
<input type="number" class="input" min ="0" max = "1440" onChange="checkFilled(1);" name="timeField1" id="timeField1" value="">
<input type="image" name="imageField1" id="imageField1" onmouseup= "SendCMD(1)" onmousedown="changeImage(1)" src="img/ButtonBlueb.png" width="42" height="42" value="">
<img src="img/on.png" alt="" width="40" height="40" id="IO1" name="IO1"/>
我一直在使用CSS,但似乎没有任何效果。这是我的一次尝试。
.input
{
border: 0px solid #444444;
height:39px;
width:50px;
background:url(img/white.png) no-repeat right top;
padding-left:4px;
}
任何建议都会很棒!
答案 0 :(得分:1)
您可以将特定颜色用作背景或图像本身作为背景。
#timeField1{
background-color : #d1d1d1;
}
OR
#timeField1{
background-image : url('img/on.png');
background-size: 80px 15px; /*optional*/
}
还要检查用户体验输入中的字体颜色。