asp.net - Text in info box not on same line -


text in info box going next line

i trying display text in info box on same line reason each word on new line. displays 'problems encountered' 1 line. have tried text-align: left.

here view code:

    <div class="panel-body">         <a href="~/employee/index">             <div class="col-lg-3 col-md-3 col-sm-12 col-xs-12">                 <div class="info-box blue-bg">                     <i class="fa fa-user"></i>                     <div class="count" style="font-size:50px">@html.raw(rows)</div>                     <div class="title" style="font-size:large;">available drivers</div>                  </div>                  <!--/.info-box-->             </div>         </a>         <!--/.col-->         <a href="~/vehicle/index">             <div class="col-lg-3 col-md-3 col-sm-12 col-xs-12">                 <div class="info-box brown-bg">                     <i class="fa fa-truck"></i>                     <div class="count" style="font-size:50px">@html.raw(rows1)</div>                     <div class="title" style="font-size:large">available vehicles</div>                 </div><!--/.info-box-->             </div><!--/.col-->         </a>         <div class="col-lg-3 col-md-3 col-sm-12 col-xs-12">             <div class="info-box red-bg">                 <i class="fa fa-exclamation-triangle"></i>                 <div class="count" style="font-size:50px">@html.raw(rows4)</div>                 <div class="title" style="font-size:large;">problems encountered</div>              </div><!--/.info-box-->         </div><!--/.col-->          <div class="col-lg-3 col-md-3 col-sm-12 col-xs-12">             <div class="info-box green-bg">                 <i class="fa fa-check"></i>                 <div class="count" style="font-size:45px">@html.raw(rows3)/@html.raw(rows2) </div>                 <div class="title" style="font-size:large">completed deliveries</div>             </div><!--/.info-box-->         </div><!--/.col-->       </div> </section> 


Comments

Popular posts from this blog

1111. appearing after print sequence - php -

java - WARN : org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/board/] in DispatcherServlet with name 'appServlet' -

Ruby on Rails, ActiveRecord, Postgres, UTF-8 and ASCII-8BIT encodings -