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.
Здравствуйте, подскажите какой тег использовать для увеличения значения, пример на картинке.
Вроде, про такой тег я слышала. Если есть тег прогресс бар, значит и такое должно быть.
Question
vladmih
Люди помогите!
Есть блок, в котором хранятся три изображения.
Блок шириной 600px должен быть,
картинки по 250;
Суть в том, мне нужно чтоб они стояли три в ряд, и последняя скрывалась за границы блока, то есть обрезалась...
html
<article class="disckography">
<p><a href="#"><img src="img/album1.jpg"></a></p>
<p><a href="#"><img src="img/album1.jpg"></a></p>
<p><a href="#"><img src="img/album1.jpg"></a></p></article>
css
.disckography {
height:350px;
width:600px;
margin:20px 0 0 100px;
overflow:hidden;
}
.disckography p {
float:left;
}
третья картинка, уходит вниз....
Link to comment
Share on other sites
8 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.