码迷,mamicode.com
首页 > Web开发 > 详细

【CSS】企业级两栏布局

时间:2021-06-30 18:40:54      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:pat   宽度   utf-8   top   html   http   port   code   mic   

效果图

技术图片

要点

利用固定定位和margin-left属性
PS:div是块级元素,不给宽度默认继承父级元素body的宽度

代码如下
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Document</title>
  <style type="text/css">
    body {
      margin: 0;
    }
    .div1 {
      position: absolute;
      top: 0;
      left: 0;
      width: 100px;
      height: 100px;
      background: black;
    }
    .div2 {
      height: 100px;
      margin-left: 100px;
      background: hotpink;
    }
  </style>
</head>
<body>
  <div class="div1"></div>
  <div class="div2"></div>
</body>
</html>

【CSS】企业级两栏布局

标签:pat   宽度   utf-8   top   html   http   port   code   mic   

原文地址:https://www.cnblogs.com/razzh/p/14954445.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!