zoukankan      html  css  js  c++  java
  • 记事本

    1.远程连接工具 : MobaXterm:“十项全能”的远程终端登录软件

    2.两个DIV 左边宽度固定,右边宽度铺满
    方法1
    <div>
    <div style="200px;
    float:left;">左</div>
    <div style="overflow:hidden;">右</div>
    </div>
    方法2
    <div style="display: flex">
    <div style="200px; flex: none;左</div>
    <div style="flex: 1;右</div>
    </div>
    3.使用CSS实现三栏自适应布局(两边宽度固定,中间自适应)
    方法1
    <div>
    <div style="position: absolute;left: 0px;">左</div>
    <div style="position: absolute;right: 0px;">右</div>
    <div style="margin:0 20px;">中xxxxxxxxxxxxxxxx</div>

    </div>

    方法2 自身浮动法
    <div>
    <div style=" float: left;">左</div>
    <div style=" float: right;">右</div>
    <div style="">中 center一定要放在最后</div>

    </div>
    方法3
    <div>
    <div style="float: left;">
    <div style="中</div>
    </div>
    <div style="float: left; 200px;height: 200px; margin-left: -100%;">左</div>
    <div style="float: left; 200px;height: 200px; margin-left: -100px;">右</div>
    </div>
     
     
    https://www.tongbiao.xyz/
  • 相关阅读:
    P4297 [NOI2006]网络收费
    P4207 [NOI2005]月下柠檬树
    bzoj2517 矩形覆盖
    bzoj2506 calc
    ......
    SP1811 LCS
    CF585E Present for Vitalik the Philatelist
    好康的
    CF605E Intergalaxy Trips
    字符串
  • 原文地址:https://www.cnblogs.com/tongbiao/p/8940001.html
Copyright © 2011-2022 走看看