2
我試圖在Bootstrap中使用切換功能,但想用圖像替換默認按鈕。該圖片的文字爲「本週」。它旁邊的按鈕將是一個圖像,顯示「所有時間」。任何想法如何做到這一點?我可以在Bootstrap中使用圖像作爲按鈕嗎?
你可以看到網頁都在這了: http://matthewtbrown.com/test/imageasbutton/
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary active thisweek">
<input type="radio" name="options" id="option1" autocomplete="off" checked> Radio 1 (preselected)
</label>
<label class="btn btn-primary">
<input type="radio" name="options" id="option2" autocomplete="off"> Radio 2
</label>
</div>
rightcolumn .btn-group .btn .btn-primary .active .thisweek {
background-image: url(../images/callout.png);
background-color: transparent;
}