行和列类,它们不会根据屏幕大小进行调整

时间:2019-05-04 13:35:48

标签: html css asp.net-mvc css3 twitter-bootstrap-3

我正在尝试根据屏幕尺寸将div移入row&col类中,但我的div保持固定,并且无法调整。即使我没有对行内的div进行任何定位,它也应该移动。我的其他页面正常工作,但是无法正常工作。

为什么会这样?

我的代码:

.my-posted-jobs {
  position: relative;
  margin-top: 101px;
  width: 44em;
  left: 11em;
  display: inline-block;
}

h1.my-posted-jobs-title {
  margin-left: 46px;
  margin-bottom: 10px;
}

.my-jobs-section {
  list-style-type: none;
  list-style-position: outside;
  margin-left: auto;
  margin-right: auto;
}

.separate-job {
  padding: 15px;
  margin: 9px;
  -webkit-box-shadow: 0px 0px 23px -5px rgba(21, 89, 211, 0.54);
  box-shadow: 0px 0px 23px -5px rgba(21, 89, 211, 0.54);
  height: 13em;
  -webkit-animation: appear 1s ease 0s 1 normal;
  -moz-animation: appear 1s ease 0s 1 normal;
  -ms-animation: appear 1s ease 0s 1 normal;
  animation: appear 1s ease 0s 1 normal;
  position: relative;
}

.pictures-li {
  width: 75px;
  height: 75px;
  display: flex;
  right: 6em;
  position: absolute;
}

.job-date-li {
  margin-top: 5em;
  display: inline-block;
  font-weight: bold;
  opacity: 0.7;
  font-size: small;
}
<section class="my-posted-jobs">

  <div class="row">
    <div class="col-md-12">

      <h1 class="my-posted-jobs-title">@ViewBag.myJobsTitle</h1>
      <div class="border-job"></div>

      <ul class="my-jobs-section">

        <li class="separate-job">
          <div class="content-li">

            <h2 class="content-li--headline"></h2>

            <div class="pictures-li">

              <img class="posted-pic" ..>

            </div>

            <div class="job-date-li">

              here is some date.
            </div>

          </div>

        </li>
      </ul>

    </div>
  </div>
</section>

1 个答案:

答案 0 :(得分:1)

我注意到了几件事。现在,您正在使用经过硬编码的EM来指示块的大小。这将导致该组件无法响应。这是一个可能的解决方案:

/* Setting a max-width of 44em while keeping the width as 100% makes it responsive. Remove the LEFT, which causes the section to offset at a fixed 11em. */

.my-posted-jobs {
    position: relative;
    margin-top: 101px;
    display: inline-block;
    width: 100%;
    max-width: 44em;
 }

由于您使用的是Bootstrap 3,因此可以利用它来发挥自己的优势。 offset cols可以以更好的响应方式帮助'left'属性。阅读文档的这一部分:

Offset Columns Documentation - Bootstrap 3

快乐编码!