记事本

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/
原文地址:https://www.cnblogs.com/tongbiao/p/8940001.html