I have three columns displayed in one row, I need to align last two to the right corner, it works fine with one column but when I try to pull-right two it messes up grid and pushes elements to the next row down. The question is how to align one column to the right and other next to it.
       <div class="row ">
                    <div class="col-sm-4">
                    ...
                    </div>
                    <div class="col-sm-3" >
                     ...
                    </div>
                    <div class="col-sm-5 pull-right">
                        <div class=" pull-right">
                          ...
                        </div>
                    </div>
        </div>
Current:
|[     ]       [      ]       [     ]|
Wanted:
|[     ]              [      ][     ]|
 
     
     
    