CSS 中文开发手册 背景颜色 | background-color (Backgrounds & Borders) - CSS 中文开发手册 CSS属性中的background-color会设置元素的背景色, 属性的值为颜色值或关键字"transparent"二者选其一 /* Keyword va... ...
分类:
Web程序 时间:
2020-07-04 01:38:48
阅读次数:
75
CSS 中文开发手册 背景图片位置 | background-position (Backgrounds & Borders) - CSS 中文开发手册 background-position指定背景图片的初始位置。这个初始位置是相对于以background-origin定义的背景位置图层来说的。 ... ...
分类:
Web程序 时间:
2020-07-04 01:29:31
阅读次数:
66
CSS 中文开发手册 背景来源 | background-origin (Backgrounds & Borders) - CSS 中文开发手册 background-origin规定了指定背景图片background-image属性的原点位置的背景相对区域. 本文标题:背景来源 | backgro... ...
分类:
Web程序 时间:
2020-07-04 00:59:51
阅读次数:
78
把top 100重新刷一遍 class Solution { public: vector<int> twoSum(vector<int>& nums, int target) { unordered_map<int,int> um; for(int i=0;i<nums.size();++i) { ...
分类:
其他好文 时间:
2020-07-03 23:16:38
阅读次数:
55
#include<stdio.h> #define MaxSize 10 typedef char ElemType; typedef struct { ElemType data[MaxSize]; int top; }SList; void InitSList(SList &S) { S.top ...
分类:
其他好文 时间:
2020-07-03 23:05:20
阅读次数:
45
1. 系统的目录结构 1.1 linux目录结构 ? 一切从根开始,一个倒挂的树 1.2 windows目录结构 ? 按照盘符进行划分 C盘: 2. linux系统中的挂载 mount linux系统中的挂载技术??? 让用户可以将一个目录作为一个存储设备的挂载点,通过挂载点可以看到存储设备中的数据 ...
分类:
其他好文 时间:
2020-07-03 21:35:44
阅读次数:
48
1、原始样式: 2、鼠标滑过时: 3、鼠标选中点击某一行 1、先写html语言,当然还是应用的前几天相同的代码,可是多了一点点... <div id="testDiv" style="width: 60%;margin-left: 10%;margin-top: 50px;height: 1100p ...
分类:
Web程序 时间:
2020-07-03 21:33:17
阅读次数:
127
.fullscreen { position: fixed; top: 0; left: 0; margin: 0 auto; width: 100%; height: 100%; background-color: #1a1a1a; } .screen-content { width: 95%; ...
分类:
Web程序 时间:
2020-07-03 21:22:11
阅读次数:
78
[TOC]## 1. Ubuntu::NetworkManager> [cnblog](https://www.cnblogs.com/EasonJim/p/8072298.html)>> [ubuntu](https://help.ubuntu.com/community/NetworkManag... ...
分类:
其他好文 时间:
2020-07-03 21:19:47
阅读次数:
79
https://www.jianshu.com/p/f70ee1765a61 如何判断当前线程是不是主线程 Looper.myLooper() == Looper.getMainLooper() Looper.getMainLooper().getThread() == Thread.current ...
分类:
其他好文 时间:
2020-07-03 21:16:52
阅读次数:
38