介绍一下标准的 CSS 的盒子模型?低版本 IE 的盒子模型有什么不同的? (1)有两种盒子模型:IE盒模型(border-box)、W3C标准盒模型(content-box) (2)盒模型:分为内容(content)、填充(padding)、边界(margin)、边框(border)四个部分 IE ...
分类:
Web程序 时间:
2020-07-27 13:40:50
阅读次数:
147
环境:CentOS 8 主服务器:10.0.0.8 从服务器:10.0.0.28 访问测试主机:10.0.0.6 一、安装DNS服务器软件 bind dnf install bind bind-utils -y ; systemctl enable --now named 二、修改主服务器 bind ...
分类:
其他好文 时间:
2020-07-27 13:38:09
阅读次数:
65
/*清除浮动*/ .clearfix:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; } .clearfix { *zoom: 1; } ...
分类:
其他好文 时间:
2020-07-26 23:21:45
阅读次数:
99
<p><iframe name="ifd" src="https://mnifdv.cn/resource/cnblogs/STM32W5500AIR202B/" frameborder="0" scrolling="auto" width="100%" height="1500"></iframe ...
分类:
其他好文 时间:
2020-07-26 23:13:20
阅读次数:
101
问题描述:Tomcat启动不正常,能自动跳转浏览器页面,但找不到页面 idea的编译路径和打包路径可能冲突了,这个问题有时出现有时不出现 解决: 然后把tomcat删除,重新配置。 ...
分类:
其他好文 时间:
2020-07-26 23:05:52
阅读次数:
58
微信小程序中的rich-text可以接收转移html标签 字体的样式处理 可以通过 给rich-text添加类名设置字体样式 图片的样式(自适应) 获取的html标签字符串.replace(/<img/g, '<img style="max-width:100%;height:auto;displa ...
分类:
微信 时间:
2020-07-26 15:42:04
阅读次数:
185
出大问题,我原来学了几天,然后刷了七八题吧,之后将近半年一次没用到, 今天回头一想后缀数组?????????? 所以来总结一下,省的模板题都不会了。 rk[i] 第i个后缀的排名; SA[i] 排名为i的后缀位置; Height[i] 排名为i的后缀与排名为(i-1)的后缀的LCP 1 POJ - ...
分类:
编程语言 时间:
2020-07-26 11:16:44
阅读次数:
72
font属性简写 front: font-style font-variant font-weight font-size/line-height font-family 说明: 值之间空格隔开 注意书写顺序 font-style font-variant font-weight 三者属性为任意的, ...
分类:
其他好文 时间:
2020-07-26 02:05:54
阅读次数:
120
项目中引入Chart.js <script src="path/to/Chart.min.js"></script> 1.创建html标签 <canvas id="barChart" width="600" height="400"></canvas> 2.创建一个chart类的实例 var lin ...
分类:
Web程序 时间:
2020-07-26 01:51:57
阅读次数:
89
2.图像方面Numpy数组相关操作 In [1]: import cv2 as cv import numpy as np #图片颜色反转 def access_pixels(img): print(img.shape) height=img.shape[0] width=img.shape[1] ...
分类:
编程语言 时间:
2020-07-26 01:42:23
阅读次数:
88