我已經想出了我自己的加號圖標,因爲字體真棒模擬似乎對我來說很厚。但我有一個問題:點擊圖標非常困難。用戶必須將光標正好放在負號上才能點擊圖標或查看工具提示。CSS icon difficult點擊
.plus {
position: relative;
width: 15px;
height: 15px;
}
.plus:before,
.plus:after {
position: absolute;
left: 15px;
content: ' ';
height: 15px;
width: 2px;
background-color: grey;
}
.plus:before {
transform: rotate(90deg);
}
<i id='new_contact' class="plus" title='Create contact' data-placement="left" data-toggle="tooltip" data-head="New sms">
\t \t \t </i>
我覺得你的代碼是不完整的,不是嗎? – Roberrrt
無論如何,像這些問題通常通過在圖標周圍添加一個小填充來解決。 – Roberrrt
使它內聯塊 - 你沒有高度或寬度的時刻,這就是爲什麼它不可點擊 – Pete