By
Mix9
есть див с 5 img, при уменьшении экрана див выходит за него. Я добавил overflow: auto для этого div в надежде на то, что я смогу прокручивать фотки с помощью скроллбара, однако даже с ним почему-то я не вижу часть фоток которые вышли за границу. Что с этим можно сделать? класс video повторяется 5 раз, я тут оставил только 1
.content{
width: 90%;
background-color: #333;
}
.video{
margin: 0px 4px 0px 4px;
width: 310;
display: flex;
flex-direction:column;
}
.video_button_text{
margin-top: 10px;
display: flex;
flex-direction: row;
font-size: 20px;
color: white;
}
.video_text_div{
display: inline-block;
width: 250px;
}
.video_text{
text-align: justify-all;
margin: 0px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.slidan_videos{
margin: 0px 10px 0px 20px;
overflow: auto;
width: auto;
margin-bottom: 50px;
display: flex;
flex-direction: row;
justify-content: space-around;
}
<div class="content">
<div class = slidan_videos>
<div class = video>
<div>
<a href = 'ссылка'><img class="img" src=""картинка"></a>
</div>
<div class = video_button_text>
<div class = avatarka_div>
<a href="ссылка" target="_blank"><img class = avatarka src="картинка"></a>
</div>
<div class = video_text_div>
<p class = video_text><a href="ссылка">текст</a></p>
</div>
</div>
</div>
Question
MadSandwich
Здравствуйте, подскажите как можно реализовать версию шапки для мобильного устройства, чтобы она была не такой пугающей как сейчас.
Хотелось бы чтобы текст был более упорядочен или сделать его мельче, для мобильных устройств, т.к. он через чур большой. На сайте использую бутстрап и само меню так же написано с его применением. Вот ссылка на сайт.
Буду благодарен любой помощи и любому совету.
Link to comment
Share on other sites
0 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.