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
rtl_one
Как отцентровать wrapper внутри container
1) по горизонтали и вертикали ?
2) по горизонтали ?
3) по вертикали ?
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Html</title>
<body>
<style>
*
{
margin:0;
padding:0;
}
html,body {
background: none;
height: 100%;
width: 100%;
}
.container {
display: block;
position: relative;
height: 100%;
margin: 0px auto 0;
width: 1000px;
background-color: black;
}
.wrapper {
display: block;
position: relative;
height: 150px;
width: 150px;
margin: 0;
background-color: blue;
}
</style>
<div class="container">
<div class="wrapper">
</div>
</div>
</body>
</head>
</html>
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.