复用 padding bottom 可实现一块区域在窗口尺寸变化使始终保持自适应。对于响应式布局中的图片或视频来说比较有用。 <div style="width: 100%; position: relative; padding bottom: 56.25%;"> <div st ...
分类:
Web程序 时间:
2019-06-30 09:15:05
阅读次数:
150
本文同步发布在CSDN:https://blog.csdn.net/weixin_44385565/article/details/94207638 1091 Acute Stroke (30 分) 1091 Acute Stroke (30 分) 1091 Acute Stroke (30 分) ...
分类:
其他好文 时间:
2019-06-29 22:36:48
阅读次数:
148
import java.util.regex.Matcher; import java.util.regex.Pattern; public class aa { public static void main(String[] args) { String htmlStr = ""; Matche... ...
分类:
其他好文 时间:
2019-06-29 15:12:57
阅读次数:
108
转自:https://www.cnblogs.com/youhong/p/6530575.html 前言:网上最普遍的实现三角形的方法,就是通过控制border来实现,那为什么可以呢? 原理 我们先来看看border的表现形式。 观察上图可以发现,border表现为梯形。当减小box的宽高时,会发生 ...
分类:
其他好文 时间:
2019-06-29 12:45:11
阅读次数:
121
题目链接 : https://leetcode cn.com/problems/binary tree level order traversal ii/ 题目描述: 给定一个二叉树,返回其节点值自底向上的层次遍历。 (即按从叶子节点所在层到根节点所在的层,逐层从左向右遍历) 例如: 给定二叉树 [ ...
分类:
其他好文 时间:
2019-06-28 20:58:56
阅读次数:
114
如何居中div? 水平居中:给div设置一个宽度,然后添加margin:0 auto属性 div{ width:200px; margin:0 auto; } 让绝对定位的div居中 div { position: absolute; width: 300px; height: 300px; mar ...
分类:
其他好文 时间:
2019-06-27 16:13:02
阅读次数:
100
摘要 布局框架搭建 随笔添加 后台管理富文本编辑器KindEditor xss攻击 文章简介的截取,BeautifulSoup4模块 富文本编辑器上传图片 头像修改 一、后台管理框架布局搭建 后台管理布局框架分析:导航条、左侧功能区、右侧主要功能显示和实现区 实现: 导航条:使用bootstrap模 ...
分类:
Web程序 时间:
2019-06-25 23:25:12
阅读次数:
376
Given a *m* x *n* grid filled with non-negative numbers, find a path from top left to bottom right which *minimizes* the sum of all numbers along its ... ...
分类:
其他好文 时间:
2019-06-24 01:00:35
阅读次数:
99
问题描述: Given a binary tree, return the bottom-up level order traversal of its nodes' values. (ie, from left to right, level by level from leaf to root) ...
分类:
编程语言 时间:
2019-06-23 15:34:57
阅读次数:
95
1.浮动 float:left /right2.清除浮动 clear:left/right/both(防止div块覆盖)3.外边距:margin:上边距,右边距,下边距,左边距。(按上右下左的顺序设置)4.内边距:padding:上边距,右边距,下边距,左边距。(按上右下左的顺序设置)5.边框:bo ...
分类:
编程语言 时间:
2019-06-22 10:52:15
阅读次数:
126