Does Bootstrap support fixed width buttons? Currently if I have 2 buttons, \"Save\" and \"Download\", the button size changes based on content.
Also what is the right wa
Just came upon the same need and was not satified with defining fixed width.
So did it with jquery:
var max = Math.max ($("#share_cancel").width (), $("#share_commit").width ()); $("#share_cancel").width (max); $("#share_commit").width (max);
SHORT LOOOOOOOOONG