我有一個input
字段using JSColor, color picker。
左側的顏色區域(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>
難道你想'顯示:none'箭頭下拉,而不是它是否有沒有的功能? – Dracorat
@Dracorat但後來我無法看到圖像 –