將圖像添加到Bootstrap3的默認導航欄下拉菜單中的最佳方式是什麼?我想在下面的圖片中重新創建佈局,圖片填充到下拉菜單中項目的右側。有什麼想法嗎?將圖像添加到引導程序下拉菜單
編輯:我打算在移動設備上隱藏圖像以獲得更好的可用性,所以我只想在桌面上使用這種佈局。
下面是我在哪裏到目前爲止
.dropdown-menu {
padding-right: 150px; /* width of img */
position: relative;
}
.dropdown-menu:after {
position: absolute;
top: 0;
bottom: 0;
right: 0;
width: 150px; /* width of img */
background: url(http://placehold.it/150x220) center;
background-size: cover;
}
看到我的編輯答案!現在它的工作! – Suresh 2014-09-05 10:16:04