为了账号安全,请及时绑定邮箱和手机立即绑定

這種版型要怎麼做?

這種版型要怎麼做?

慕侠2389804 2018-10-20 14:09:19
想問問這種版型要怎麼做呢就是左邊一個區塊 右邊也是一個滿版的區塊能夠隨螢幕大小自行變化(但左邊區塊不變)補上我自己的程式碼<div class="div_left"> </div> <div class="div_right"> </div>.div_left{    background-color:#2E3C54; width:12%; height:100vh;    display:inline-block; }.div_right{    background-color:#eee; width:80%; height:100vh;    display:inline-block; }完全不對...
查看完整描述

1 回答

?
RISEBY

TA贡献1856条经验 获得超5个赞

<!DOCTYPE html>

<html>

<head>

  <meta charset="UTF-8">

  <meta name="viewport" content="width=device-width, initial-scale=1.0">

  <meta http-equiv="X-UA-Compatible" content="ie=edge">

  <title>Document</title>

  <style>

    body{

      margin: 0;

    }

    .container{

      position: absolute;

      height: 100%;

      width: 100%;

      display: flex;

      flex-wrap: nowrap;

      align-items: stretch;

    }

    .left{

      flex-basis: 200px;

      flex-grow: 0;

      flex-shrink: 0;

      background: red;

    }

    .right{

      width: 100%;

      background: pink;

    }

  </style>

</head>

<body>

  <div class="container">

    <div class="left"></div>

    <div class="right"></div>

  </div>

</body>

</html>


查看完整回答
反对 回复 2018-11-17
  • 1 回答
  • 0 关注
  • 474 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信