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.
Актуальные контакты:
Telegram: @Nikker_web
E-Mail: tarasevich.email@gmail.com
Портфолио https://www.behance.net/d4d4186e
Разрабатываю дизайн групп в соц сетях, сайтов, приложений, другой дизайн под заказ
Актуальные контакты:
Telegram: @Nikker_web
E-Mail: tarasevich.email@gmail.com
Разрабатываю дизайн групп в соц сетях, сайтов, приложений, другой дизайн под заказ
Портфолио https://www.behance.net/d4d4186e
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.