I need one DIV - like wss name     [WAIT LOADER ONLY IF ON LOADING TIME]
I tried below way where first column height is different then second column. How can i achive this with single row.  first column has static text but, second column only some time come. But i need - alert alert-info applied with same height of div remains.
 <div class="row" ng-controller="indexController" ng-hide="!globals.currentUser">
        <div class="alert alert-info col-md-6">
            Current Workspace:<strong>{{currentWorkspace}}</strong>
        </div>
        <div data-ng-if="loading" class="col-md-6">
            Processing...<img src="../../Content/Images/ajax-loader.gif" />
        </div>
    </div>
Please let me know if any way to achieve this or any bootstrap style.
 
     
    