首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >引导列未对齐的文本和图像

引导列未对齐的文本和图像
EN

Stack Overflow用户
提问于 2018-11-22 09:11:23
回答 2查看 64关注 0票数 0

好的,我有这个问题,我的引导行列是不对齐的,文本在col-8下,图像在col-4下面。但是,即使是在同一行中,文本和图像也是不对齐的。任何帮助将不胜感激,我有一个js小提琴链接的问题。

  1. 代码片段:
代码语言:javascript
复制
   <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>
  1. 小提琴手:https://jsfiddle.net/xp3zqLra/4/
  2. 电流状态

  1. 预定布局

EN

回答 2

Stack Overflow用户

回答已采纳

发布于 2018-11-22 09:25:56

代码语言:javascript
复制
.row {
  display:flex;
}

.row > *
{
  align-self:end;
}

https://jsfiddle.net/xp3zqLra/6/

票数 0
EN

Stack Overflow用户

发布于 2018-11-22 09:27:52

请删除这些不必要的br标签,并从一行中删除对齐项-中间类。

代码语言:javascript
复制
<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/

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/53427348

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档