因为box1加了float,导致box2的内容跑上去了。所以需要清除浮动解决方案1:给box1加 overflow:hidden,形成bfc解决方案2:使用:after 即隔墙法 {content:’’; clear:both, display:block} 解决后的效果:对应的代码<body> < ...
分类:
其他好文 时间:
2021-07-05 17:21:45
阅读次数:
0
基础命令 #查看系统configgit config --system --list #查看当前用户(global)配置git config --global --list 当你安装Git后首先要做的事情是设置你的用户名称和e-mail地址。这是非常重要的,因为每次Git提交都会使用该信息。它被永远 ...
分类:
其他好文 时间:
2021-07-05 16:58:20
阅读次数:
0
1、内嵌nodejs 作用:显示最终页面。 2、前端组件 包括:Button,Checkbox,Grid,TextField,ProcessBar,Dialog,RadioButton,以及各种Layout等(全部是Java类,实现了Compoment接口) 3、内嵌GWT (Google Web ...
分类:
其他好文 时间:
2021-07-02 15:57:57
阅读次数:
0
在linux编程时,有时需要通过系统中已有的邮件客户端进行附件添加。 1. Thunderbird /usr/lib/thunderbird/thunderbird -compose attachment='/tmp/simple-scan-75G3Z0/scan.jpeg' 2. Evolutio ...
分类:
系统相关 时间:
2021-06-29 16:01:55
阅读次数:
0
改了很久才import成功。期间查了不少东西,虽然大部分没用上,但还是记录一下。 PCRaster的安装和个人的最终解决方法 Software for environmental modelling | PCRaster 官网推荐新创建一个虚拟环境运行。看到conda于是打开prompt。 cond ...
分类:
其他好文 时间:
2021-06-28 18:42:28
阅读次数:
0
###js var href='http://localhost:8083/datas/dataflow/logicJob?id=CMZJJO2100000001&type=proLook' var urlParams = (function(url){ var result = new Objec ...
分类:
其他好文 时间:
2021-06-25 16:32:45
阅读次数:
0
PHP E-mail 注入 首先,请看上一节中的 PHP 代码: <html> <body> <?php if (isset($_REQUEST['email'])) //if "email" is filled out, send email { //send email $email = $_R ...
分类:
Web程序 时间:
2021-06-21 20:45:37
阅读次数:
0
React是个历史悠久的FB框架,以其他两个相比,谁好谁坏,讨论起来没有啥价值; 但是时代是进步的,当然越晚出的东西在某些方面上当然有一些优势(个人观点),但是总体上讲,就好比讨论ts和flow哪个真正更好一样,没有价值。 但是有一点是肯定的React的出现真正是具有里程碑的价值,在这点上VUE 尤 ...
分类:
其他好文 时间:
2021-06-19 18:53:06
阅读次数:
0
Mac使用npm更新包出现问题,使用n切换到不同版本时出错信息还不相同 npm ERR! Cannot read property 'resolve' of undefined npm ERR! asyncWrite is not a function 怀疑是使用brew更新所有软件时顺带更新了no ...
分类:
系统相关 时间:
2021-06-19 18:42:10
阅读次数:
0
C# detect driver ssd/hdd 来自github的代码,略做了一丢丢修改。 using Microsoft.Win32.SafeHandles; using System; using System.Collections.Generic; using System.Compone ...