最新 最热

css3实现border渐变色

.gradualChange{width: 300px;height: 300px;border:20px solid;//兼容border-image: -webkit-linear-gradient(#000,#333,#000) 30 30;border-image: -moz-linear-grad...

2020-01-07
1

jq获取文档和窗口高度

jquery获取窗口高度和窗口高度,$(document).height()、$(window).height()

2019-12-18
1

python 将计算结果保留到缓存中

<pre style="box-sizing: border-box; font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", Courier, monospace; font-size: 12px;...

2019-12-12
1

python3 类的特殊方法

#########################################################################

2019-12-12
0

7个Web前端程序员必须会用CSS技巧

1、元素的margin的top、bottom及padding的top、bottom使用百分比作为单位时,其是相对父元素的宽度width的而不是我们想象的高度height;

2019-12-12
1

max-height

max-height 规定标签设置最大高度,且能阻止height属性的设置值比max-height大。

2019-11-26
1

min-height 属性

min-height 规定标签设置最小高度,且能阻止height属性的设置值比min-height小。min-height 可覆盖 height , min-height 可覆盖 max-height。

2019-11-26
1

机制和原理——盒子模型

容器元素的客户区域包含内边距(padding)和内容(content),但不包含边框(border)。因此在position=absolute的情况下,left和top属性指定的是子元素的外边距(margin)的左上角相对于父元素的内边距(padding)左上角的位置。...

2019-11-26
1

pytorch基础知识 切片与索引-上

为后续讲解方便,这里先介绍CNN的基本图片的概念,一般将图片设定为[batch_size, channel, height, width]的四维矩阵。

2019-11-17
1

设计模式—–里氏替换原则

开放封闭原则(Open Closed Principle)是构建可维护性和可重用性代码的基础。它强调设计良好的代码可以不通过修改而扩展,新的功能通过添加新的代码来实现,而不需要更改已有的可工作的代码。抽象(Abstraction)和多态(Polymor...

2019-11-09
0