首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >如何在一个节中居中放置多个div?

如何在一个节中居中放置多个div?
EN

Stack Overflow用户
提问于 2019-07-17 03:04:29
回答 1查看 56关注 0票数 0

我知道有一个现有的问题,似乎没有一个解决方案对我有效,这个问题发布在2014年。

下面是我的代码:

 <section id="team-block">
  <div class="team-block-centered">
    <div class="col-lg-3 col-sm-6 member-1">
      <div class="team-member">
        <img
          src="http://lvsmiledesigners.com/new/wp-content/uploads/2019/06/dr-tongsiri.jpg"
          data-original="http://lvsmiledesigners.com/new/wp-content/uploads/2019/06/dr-tongsiri.jpg"
          alt=""
          class="lazy"
          style="display: block;"
        />
        <div class="inner">
          <h4 class="name">Dr. Amy Tongsiri</h4>
          <p class="position">
            <small>Clinical Director</small>
          </p>
        </div>
        <div class="hover">
          <div class="description">
            <p>
              Dr. Amy Tongsiri has joined Smile Designers of Las Vegas in 2017.
              She has a joyous energy vibrating the room as she enters. Almost
              permanently smiling, she exudes positivity and can easily relaxed
              and soothe a nervous patient. The desire to pursue a career in
              dentistry came young for Dr. Tongsiri, during the course of her
              own dental health. "I originally wanted to do orthodontics, when I
              had braces,” she says, flashing the resulting perfect smile. “But
              eventually, I found General Dentistry to be more exciting because
              you are challenged by being able to cover everything."
            </p>
          </div>
          <div class="read-more">
            <a href="/new/dr-amy-tongsiri/" class="button white outline"
              >Read more <span class="nc-icon-glyph arrows-1_bold-right"></span
            ></a>
          </div>
        </div>
        <!--.hover-->
      </div>
      <!--.team-member-->
    </div>
    <!--.col-lg-3-->
  </div>
  <div class="col-lg-3 col-sm-6 member-2">
    <div class="team-member">
      <img
        src="http://lvsmiledesigners.com/new/wp-content/uploads/2019/07/Dr-Dominique-Dela-Cruz.jpg"
        data-original="http://lvsmiledesigners.com/new/wp-content/uploads/2019/07/Dr-Dominique-Dela-Cruz.jpg"
        alt=""
        class="lazy"
        style="display: block;"
      />
      <div class="inner">
        <h4 class="name">Dr. Dominique Dela Cruz</h4>
        <p class="position">
          <small>Lead Dentist</small>
        </p>
      </div>
      <div class="hover">
        <div class="description">
          <p>
            Providing comprehensive dental care that is tailored to each and
            every patient’s needs is Dr. Dominique Dela Cruz’s goal when it
            comes to treating patients. She strives to provide dental care in a
            comfortable environment while using the most innovative and advanced
            technology. Dr. Dela Cruz grew up in Las Vegas, NV. On her spare
            time, she likes to stay outdoors as much as possible. She loves to
            hike, travel, kayak and snowboard. She also likes to read books and
            watch movies with her dogs. Like most of her patients, Dr. Dela Cruz
            has a sweet tooth and enjoys eating candy, chocolate and other
            pastries.
          </p>
        </div>
        <div class="read-more">
          <a href="/new/dr-jorge-jimenez-marquez/" class="button white outline"
            >Read more <span class="nc-icon-glyph arrows-1_bold-right"></span
          ></a>
        </div>
      </div>
      <!--.hover-->
    </div>
    <!--.team-member-->
  </div>
  <!--.col-lg-3-->
  <div class="col-lg-3 col-sm-6 member-3">
    <div class="team-member">
      <img
        src="http://lvsmiledesigners.com/new/wp-content/uploads/2019/06/karla.jpg"
        data-original="http://lvsmiledesigners.com/new/wp-content/uploads/2019/06/karla.jpg"
        alt=""
        class="lazy"
        style="display: block;"
      />
      <div class="inner">
        <h4 class="name">Karla Brown</h4>
        <p class="position">
          <small>Office Manager</small>
        </p>
      </div>
      <div class="hover">
        <div class="description">
          <p>
            Delivering outstanding customer service has always been an essential
            part of a day’s work for Karla. As Smile Designers of Las Vegas
            Office Manager, she is responsible for all office procedures, and
            uses her organizational skills to ensure smooth operations in a busy
            work environment.
          </p>
        </div>
        <div class="read-more">
          <a href="/new/nancy-gutierrez/" class="button white outline"
            >Read more <span class="nc-icon-glyph arrows-1_bold-right"></span
          ></a>
        </div>
      </div>
      <!--.hover-->
    </div>
    <!--.team-member-->
  </div>
  <!--.col-lg-3-->
  <div class="col-lg-3 col-sm-6 member-4">
    <div class="team-member">
      <img
        src="http://lvsmiledesigners.com/new/wp-content/uploads/2019/06/nancy.jpg"
        data-original="http://lvsmiledesigners.com/new/wp-content/uploads/2019/06/nancy.jpg"
        alt=""
        class="lazy"
        style="display: block;"
      />
      <div class="inner">
        <h4 class="name">Nancy Gutierrez</h4>
        <p class="position">
          <small>Lead Back Office Assistant</small>
        </p>
      </div>
      <div class="hover">
        <div class="description">
          <p>
            As Smile Designers of Las Vegas lead dental assistant she says her
            coworkers and easy-going patients make it a pleasure to go to work
            every day. She loves been a part in patients journeys to a better
            and healthier oral health.
          </p>
        </div>
        <div class="read-more">
          <a href="/new/karla-brown/" class="button white outline"
            >Read more <span class="nc-icon-glyph arrows-1_bold-right"></span
          ></a>
        </div>
      </div>
      <!--.hover-->
    </div>
    <!--.team-member-->
  </div>
  <!--.col-lg-3-->
</section>

这是实时站点:http://lvsmiledesigners.com/new/

该部分位于“我们的团队可以帮助您!”标题。我担心的是艾米博士的div。我不确定为什么艾米博士的图像比其他图像的宽度更窄。

EN

回答 1

Stack Overflow用户

发布于 2019-07-17 03:31:25

换句话说,图像的宽度非常短= 173px原始图像,它应该大于204px。

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

https://stackoverflow.com/questions/57063895

复制
相关文章

相似问题

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