我有一个使用 JSColor, color pickerinput
的字段。
左侧的颜色区域(文本字段)从充当按钮的库中填充。input
问题:是否可以在右侧(.arrowDiv
)上设置图像区域,以便我可以单击其input
下方的文本字段?下层含义z-index
原因是因为我似乎无法更改库以检测除input
文本字段以外的任何点击
由于网址问题,我无法制作小提琴
CSS:
.input-container {
position:relative; border:#999 1px solid;
height: 38px; width: 80px;
}
.arrowDiv{
position:absolute; right:0; width:38px; height:38px; display:block; z-index:2;
background: url("arrow.png") no-repeat scroll -335px 0 #F2F2F2;
}
.input-container input{
float:left; margin:0; padding:0;
width:75px; height:38px;
border:none; background:transparent; cursor:pointer;
}
html:
<div class="input-container">
<input class="color">
<div class="arrowDiv"></div>
</div>