I tried to use Label 2 with bootstrap-select, but it looks different to the bootstrap (Label 1) one. How is it possible to get the two la
I've modified caeth's solution with additional CSS to ensure the select button is rounded at their respective corners.
HTML
CSS
.input-group > .input-group-btn:last-child > .selectpicker {
border-top-right-radius: 5px;
border-bottom-right-radius: 5px;
}
.input-group > .input-group-btn:first-child > .selectpicker {
border-top-left-radius: 5px;
border-bottom-left-radius: 5px;
}
See it here: http://jsfiddle.net/xr4uofje/130/