最新 最热

页面布局规划

1)块级元素会在文档中单独占有一行  ----------------在文档流中  在位置   即从上到小排列

2019-04-08
1

垂直居中 原

垂直居中的方法很多,一般是设置line-height,display:table-cell,vertical-align:middle,或者transform:translate(0,-50%),最近看到也可以使用另一种方法实现垂直居中

2019-04-04
1

[探索]在开发中尽量提高代码的复用性

相信很多人和我一样,在开发项目的时候,因为项目赶,或者一时没想到等原因。频繁使用 ctrl+c 和 ctrl+v ,导致代码很多都是重复的。这几天,也看了自己以前写的代码,简单的探索了一下,挑选几个实例,分享下如何在特定场景下,保证代...

2019-03-13
1

时间轴组件 by Vue.js

在公司的项目开发中,涉及到了移动端H5页面的时间轴展示效果。现有的轮子比如ElementUI、iView中,都没有专门的时间轴组件,于是就萌生了自己封装一个的想法。...

2019-03-08
1

单调栈结构 && 84. Largest Rectangle in Histogram&&最大子矩阵的大小

Given n non-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in the histogram.

2019-02-25
1

CSS尺寸和边框

1.  px  像素(由一连串的点来组成,像素越高点越多)

2018-08-29
1

label+input实现开关切换效果

Document<!-- .ipt { display: none; } .box { width: 74px; height: 30px; line-height: 30p...

2018-07-05
1

LeetCode 109 Convert Sorted List to Binary Search Tree

Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST.For this problem, a height-balanced binary tree is...

2018-07-04
1

LeetCode 108 Convert Sorted Array to Binary Search Tree

Given an array where elements are sorted in ascending order, convert it to a height balanced BST.For this problem, a height-balanced binary tree is defined as ...

2018-07-04
1

关于border边框重叠颜色设置问题

盒子模型包括:margin border padding content   在标准盒子模型中 conten不包括border和padding  就是他自身内容所包含的区域。   在IE盒子模型中    content包括border和padding   是内容和border padding...

2018-06-28
0