一:背景图像区域: background-clip:指定背景绘制区域 border-box:背景被剪裁到边框盒 padding-box:背景被剪裁到内边距框 content-box:背景被剪裁到内容框 content-box padding-box border-box <!DOCTYPE html ...
分类:
Web程序 时间:
2021-01-18 10:43:54
阅读次数:
0
下载两个小软件 https://download.csdn.net/detail/wuming22222/9554031 (下载目录) 需要执行的命令 ".\instsrv.exe" good_start "C:\srvany\srvany.exe" 第一段是执行的软件的位置,就是下载的两个小软件 ...
需求场景:ScrollView中需要一个定高的recyclerView,其高度为屏幕高度,本以为一个简单的需求,调试了半天. 最初的高度获取 public static int getScreenHeight(Context context) { final Resources resources ...
分类:
其他好文 时间:
2021-01-16 11:50:38
阅读次数:
0
问题1:代码貌似没问题,运行时报错如下 e02c46afd9c845759c38d96a3ca2e6e1Traceback (most recent call last): File "/apps/svr/pyenv/versions/linkage/lib/python2.7/site-packa ...
分类:
编程语言 时间:
2021-01-16 11:40:38
阅读次数:
0
查看网络设置: 测试网络连接: 使用网络配置命令: 修改网络配置文件: 配置DHCP服务器: 使用DHCP客户端: 两机相连必须条件 ip地址 子网掩码 默认网关 DNS 示例: ip: 192.168.0.10 子网掩码: 255.255.255.0 网关: 192.168.0.1 DNS: 20 ...
分类:
系统相关 时间:
2021-01-14 11:20:36
阅读次数:
0
前言 This is a work timer.It can set every working period to remind you that it's time to have a rest, drink some water and exercise your body. Only in ...
分类:
其他好文 时间:
2021-01-14 11:16:06
阅读次数:
0
I'm back.I've get an offer from my current job,as a developer. Also, I decide to maintian my hobby to write down what I've learnt during my closing ti ...
分类:
其他好文 时间:
2021-01-14 10:42:08
阅读次数:
0
开始 最近刚刚做完自定义表单的组件,分享一下拖拽排序。 效果图 准备工作 官方文档 https://react-dnd.github.io/react-dnd/about 安装react-dnd、react-dnd-html5-backend npm install react-dnd react- ...
分类:
编程语言 时间:
2021-01-13 11:35:02
阅读次数:
0
#include <iostream> #include <stack> using namespace std; class GetMinStack{ public: void push(int x); void pop(); int top(); int getmin(); private: s ...
分类:
其他好文 时间:
2021-01-13 11:27:28
阅读次数:
0
在.h文件中必须同时有模板的声明和明确的定义,不能在.cpp中却定义。 1 #ifndef STACKTP_H_ 2 #define STACKTP_H_ 3 template <class Type, int MAX> 4 class Stack 5 { 6 private: 7 Type ite ...
分类:
编程语言 时间:
2021-01-12 10:36:55
阅读次数:
0