好的,我有这个问题,我的引导行列是不对齐的,文本在col-8下,图像在col-4下面。但是,即使是在同一行中,文本和图像也是不对齐的。任何帮助将不胜感激,我有一个js小提琴链接的问题。
<div class="col-md-8 justify\_text"> <span> <h4 class="bold\_font color-mwc-orange">WHO WE ARE</h4> <br> <h4 class="color-mwc-blue text-height-wide2">My White Card is an innovative collaboration of the recent revolutionary healthcare approach; The first of its kind beauty, health, and wellness membership that offers an array of the best discount coupons and unlimited services in pursuit of a convenient access through a Mobile App technology. </h4> <h4 class="color-mwc-blue text-height-wide2">We offer different discount coupons from aesthetics, cosmetic surgeries, dental services, functional medicine, preventive healthcare and wellness programs from our Exclusive, Premiere and carefully curated clinics and excellent doctors in the Metro.</h4> </span> </div> <div class="col-md-4"> <br><br><br> <img src="img/home\_who\_we\_are.jpg" class="img-responsive spacer center-block"> </div> </div> </div>


发布于 2018-11-22 09:25:56
.row {
display:flex;
}
.row > *
{
align-self:end;
}发布于 2018-11-22 09:27:52
请删除这些不必要的br标签,并从一行中删除对齐项-中间类。
<div class="container">
<div class="row">
<div class="col-md-8 justify_text">
<span>
<h4 class="bold_font color-mwc-orange">WHO WE ARE</h4>
<h4 class="color-mwc-blue">My White Card is an innovative collaboration of the recent revolutionary healthcare approach; The first of its kind beauty, health, and wellness membership that offers an array of the best discount coupons and unlimited services in pursuit of a convenient access through a Mobile App technology. </h4>
<h4 class="color-mwc-blue">We offer different discount coupons from aesthetics, cosmetic surgeries, dental services, functional medicine, preventive healthcare and wellness programs from our Exclusive, Premiere and carefully curated clinics and excellent doctors in the Metro.</h4>
</span>
</div>
<div class="col-md-4">
<img src="https://via.placeholder.com/350
C/O https://placeholder.com/" class="img-responsive spacer center-block">
</div>
</div>
</div>这里有一个小提琴:https://jsfiddle.net/xp3zqLra/5/
https://stackoverflow.com/questions/53427348
复制相似问题