2017-02-02 8 views

答えて

2

CSS、あなたにこれを追加します。

.panel-body .col-md-10 { 
    display: table; 
    height: 80px; 
} 
.panel-body .col-md-10 > h4 { 
    display: table-cell; 
    vertical-align: middle; 
} 
-1
<div class="emr-alert panel panel-default col-sm-6 col-md-7 col-xs-12 "> 
    <div class="panel-body"> 
     <div class="col-md-2 col-xs-3" align="center"> 
     <i class="fa fa-exclamation-triangle" aria-hidden="true"></i> 
     </div> 

     <div class="col-md-10 col-xs-9"> 
     <h4> 
      Your program has not been integrated with your EMR system. 
      Please contact your administrator for more information regarding system integration. 
     </h4> 
     </div> 
    </div> 
    </div> 
関連する問題