See this fiddle如何讓<Span>上面有一個按鈕,可點擊(如按鈕)?
我想一方面是「眼睛」圖標顯示爲現在(上面的按鈕,所以我不認爲一個的z-index將幫助),但在另一方面,我想讓按鈕在其所有表面都可點擊,也就是說在眼睛區域也是如此。
另外,有沒有更好的方法來定位眼睛?因爲一旦我使用不同的文字,然後「點擊我」,我將不得不相應地設置眼睛的絕對位置。任何方式來更好地定義它?
<form action="1.php" method="POST" target="_blank">
<input type="submit" class="button" value="Click Me"><span class="fa fa-eye fa-lg foo" "></span>
</form>
.foo{
color:red;
font-size:1.7em;
position: absolute;
height: 11px;
top: 18px;
left: 15px;
pointer-events: none;
}
.button {
display: inline-block;
zoom: 1;
line-height: normal;
white-space: nowrap;
vertical-align: baseline;
text-align: center;
cursor: pointer;
-webkit-user-drag: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
font-family: inherit;
font-family: arial;
font-size: 17px;
padding: .5em .9em .5em 2em;
text-decoration: none;
border-radius: 4px;
text-shadow: 0 1px 1px rgba(0, 0, 0, .2);
}
你有使用''或者你可以使用一個'button'? – 2014-09-21 21:54:56
必須使用輸入,好吧,我會添加代碼 – rockyraw 2014-09-21 21:59:27