Расположение текста в мобильной версии веб-страницы

#html #css #responsive

#HTML #css #отзывчивый

Вопрос:

У меня есть слайдер и текст внутри него, и мне нужно сделать этот текст адаптивным. Я имею в виду, что в компьютерной версии это выглядит так, как я хочу, но в мобильной версии это смещается, и я не вижу своих значков друг под другом.

css:

 .sliderr__item .slid{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-left: 50px;
    margin-top: 50px;
    text-align: left;
    align-items: flex-start;
    justify-content: flex-start;
}
/*END*/

.sliderr {
    background-color: #fff;
    position: relative;
    overflow: hidden;
    width: 100%;
}
.sliderr__wrapper {
    display: flex;
    transition: transform 0.6s ease;
    /* ADDED: */
    margin-bottom: 10px;
}
.sliderr__item {
    flex: 0 0 50%;  
}

.sliderr .date {
    display: inline-block;
    margin-left: 1em;
}

/* Added: */
.sliderr__controls {
  display: flex;
  justify-content: center;
  flex-flow: row;
}
.sliderr__control {
  /* Added: */
  border-radius: 50%;
  /* Updated: */
  position: relative;
  top: 0;
  width: 25px;
  /* The Same: */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  height: 25px;
  background: #5FA467;
  /*
    REMOVED: transform: translateY(-50%);
  */
}
  

HTML:

 <div class="sliderr"><br>
    <div class="sliderr__wrapper">
    <div class="sliderr__item" style="border: 1px solid #DCE2EC;">
      <div style="height: 150px;" class="slid">
          <p style="font-family: Roboto; font-size: 14px; color: #5FA467;">My first text</p><br>
          <p style="font-family: Roboto; font-size: 16px; color: #000; font-weight: bold;">My second text</p><br> 
          <p style="display: inline-block; font-family: Roboto; font-size: 14px; color: #000;"><img src="https://via.placeholder.com/20" style="width: 18px; height: 18px;"><span>My User</span><img src="https://via.placeholder.com/20" style="margin-left: 20px;">  21.08.2018</p>
      </div>
    </div>

    <div class="sliderr__item" style="border: 1px solid #DCE2EC;">
      <div style="height: 150px;" class="slid">
          <p style="font-family: Roboto; font-size: 14px; color: #5FA467;">My first text</p><br>
          <p style="font-family: Roboto; font-size: 16px; color: #000; font-weight: bold;">My second text</p><br> 
          <p style="display: inline-block; font-family: Roboto; font-size: 14px; color: #000;"><img src="https://via.placeholder.com/20" style="width: 18px; height: 18px;"><span>My User</span><img src="https://via.placeholder.com/20" style="margin-left: 20px;">  21.08.2018</p>
      </div>
    </div>
</div>
</div>
  

Итак, у меня есть 3 абзаца текста, и в мобильной версии мне нужно видеть их в центре и друг под другом, а значки должны быть друг под другом с их текстом. Как я могу это сделать? Полный пример в этом JSFiddle https://jsfiddle.net/ofzpnL2k/4/

Ответ №1:

Вы можете использовать медиа-запросы CSS для достижения другого стиля ссылки для мобильных устройств. Это похоже на if условные обозначения для CSS.

Здесь вы можете найти более подробное объяснение по этому поводу: https://www.w3schools.com/csSref/css3_pr_mediaquery.asp.