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
tarkinsky
Помогите пожалуйста решить такую проблему верстки: Скрин проблемы....
Проблема что создан div, внутри него картинки, они же ссылки, нужно чтобы они растягивали div а не выезжали из него(.
вот код html:
...
<div id="ads_carrier">
<a href="../"><img class="ad_img" src="pics/ad_home.gif" /></a>
<a href="../"><img class="ad_img" src="pics/ad_bath.gif" /></a>
<a href="../"><img class="ad_img" src="pics/ad_room.gif" /></a>
<a href="../"><img class="ad_img" src="pics/ad_roof.gif" /></a>
</div>
...
и CSS:
...
#ads_carrier{
position: relative;
width: 100%;
clear: both;
padding-top: 1%;
padding-bottom: 2%;
}
#ads_carrier a{
display: block;
width: 194px;
height: 80px;
padding: 0px;
margin: 0px;
border: 0px;
border: 1px solid black;
float: left;
margin-left: 3%;
}
.ad_img{
width: 194px;
height: 80px;
}
...
Спасибо...
Link to comment
Share on other sites
6 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.