Тег <div></div>




Этот тег определяет раздел в документе.




style.css
  • * {
  •  margin: 0;
  •  padding: 0;
  • }
  •  
  • .main {
  •  width: 800px;
  •  height: 400px;
  •  position: absolute;
  •  left: 50%;
  •  top: 50%;
  •  margin-left: -400px;
  •  margin-top: -200px;
  •  background-color: #EEFCCD;
  • }
  •  
  • .wrapper-block {
  •  width: 33.3%;
  •  height: 100%;
  •  float: left;
  • }
  •  
  • .block {
  •  width: 200px;
  •  height: 100px;
  •  background-color: #CC99CC;
  •  position: relative;
  •  left: 50%;
  •  top: 50%;
  •  margin-left: -100px;
  •  margin-top: -50px;
  •  text-align: center;
  •  line-height: 100px;
  •  font-size: 24px;
  • }
  • * {
  •  margin: 0;
  •  padding: 0;
  • }
  •  
  • .main {
  •  width: 800px;
  •  height: 400px;
  •  position: absolute;
  •  left: 50%;
  •  top: 50%;
  •  margin-left: -400px;
  •  margin-top: -200px;
  •  background-color: #EEFCCD;
  • }
  •  
  • .wrapper-block {
  •  width: 33.3%;
  •  height: 100%;
  •  float: left;
  • }
  •  
  • .block {
  •  width: 200px;
  •  height: 100px;
  •  background-color: #CC99CC;
  •  position: relative;
  •  left: 50%;
  •  top: 50%;
  •  margin-left: -100px;
  •  margin-top: -50px;
  •  text-align: center;
  •  line-height: 100px;
  •  font-size: 24px;
  • }


index.html
  • <!DOCTYPE html>
  • <html>
  • <head>
  •  <meta charset="utf-8" />
  •  <title>New Page</title>
  •  <link href="style.css" rel="stylesheet" />
  • </head>
  • <body>
  •  <div class="main">
  •   <div class="wrapper-block">
  •    <div class="block">Hello World!</div>
  •   </div>
  •   <div class="wrapper-block">
  •    <div class="block">To be or not to be?</div>
  •   </div>
  •   <div class="wrapper-block">
  •    <div class="block">Привет Мир!</div>
  •   </div>
  •  </div>
  • </body>
  • </html>
  • <!DOCTYPE html>
  • <html>
  • <head>
  •  <meta charset="utf-8" />
  •  <title>New Page</title>
  •  <link href="style.css" rel="stylesheet" />
  • </head>
  • <body>
  •  <div class="main">
  •   <div class="wrapper-block">
  •    <div class="block">Hello World!</div>
  •   </div>
  •   <div class="wrapper-block">
  •    <div class="block">To be or not to be?</div>
  •   </div>
  •   <div class="wrapper-block">
  •    <div class="block">Привет Мир!</div>
  •   </div>
  •  </div>
  • </body>
  • </html>