Bootstrap CSS space between buttons in navbar

css, twitter-bootstrap

Solution

you may try `margin-left`

here is the code

.btn{
margin-left:10px;
}

here is the example:: FIDDLE

Problem

How can I make space between buttons in navbar? I usually do that with ` `but it doesn't work now. Here's an JSfiddle of how it looks: http://jsfiddle.net/W6hEa/

Original source