0

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.

dsi
  • 3,199
  • 12
  • 59
  • 102

1 Answers1

0

Use display:flex property for the parent of the column.

John
  • 3
  • 3
Tal
  • 1,091
  • 12
  • 25