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
Liubo
Podskajite pojaluista!
Kak sdelat rasstojanije mejdu jeltimi blokami, no pri etom ostavit ix na odnoi linii?
<div id="main" class="clearfix">
<div class="first">1</div>
<div class="first">2</div>
<div class="first">3</div>
</div>
* {
box-sizing: border-box;
}
#main {
width: 100%;
background-color: green;
padding: 10px 0;
}
.first {
/* margin: 10px; */
/* display: inline-block; */
width: 33.33%;
float:left;
background-color: yellow;
text-align: center;
}
.clearfix:before,
.clearfix:after {
content: " ";
display: block;
}
.clearfix:after {
clear: both;
}
Link to comment
Share on other sites
1 answer 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.