JSColor、カラーピッカーを使用するinput
フィールドがあります。
左側のカラー エリア (テキスト フィールド) は、ボタンとして機能するライブラリから取り込まれます。input
質問:画像領域を右側 ( ) に配置して、その下のテキスト フィールド.arrowDiv
をクリックできるようにすることはできますか? input
意味の下にz-index
input
その理由は、テキスト フィールド以外からのクリックを検出するようにライブラリを変更できないように見えるためです。
URLの問題のため、フィドルを作成できませんでした
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>