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
pati
Добрый день! Второй день мучаюсь не могу найти ничего по данной проблеме!
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>test</title>
<style>
html, body {
height: 100%;
widht: 100%;
padding: 0;
margin: 0;
}
.wrap{
height: 100%;
width: 100%;
padding: 0;
margin: 0;
position: relative;
}
.header{
height: 50px;
width: 100%;
background: blue;
}
.content{
height: 100%;
min-height: 100%;
padding: 10px 0;
width: 100%;
background: yellow;
}
.footer{
display: table-row;
height: 30px;
width: 100%;
background: red;
padding: 0;
margin: 0;
position: absolute;
bottom: 0
left: 0;
}
</style>
</head>
<body>
<div class="wrap">
<div class="header">asfdsa</div>
<div class="content">asfasf</div>
<div class="footer">fasfasf</div>
</div>
</body>
</html>
Link to comment
Share on other sites
3 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.