我怎麼能做出酥料餅底格不超越酥料餅的按鈕右側,如圖所示: 對齊酥料餅到左下方
這裏是我的代碼。
HTML:
<a href="#" tabindex="0" class="btn btn" role="button" data-toggle="popover" data-trigger="focus" data-content="<input>">
Search
</a>
的Javascript:
$('[data-toggle="popover"]').popover({
trigger: 'manual',
placement: 'bottom',
html: true
}).click(function (e) {
e.preventDefault();
$(this).popover('show');
});
Bootply:
http://www.bootply.com/3SLzUgPyrV
你可以嘗試這樣的事情,並適應你的要求。 http://www.bootply.com/NZRFyE1zPw – Sebsemillia 2014-11-24 18:11:49
@Sebsemillia,這就是我需要的,但任何方式來消除這種奇怪的重新排列效果? – BernardoLima 2014-11-24 18:14:11
我用修復程序創建了一個答案。 – Sebsemillia 2014-11-24 18:22:50