弹性布局的基础讲解 弹性布局是由w3c在2009年提出的一种布局方法,目前浏览器都已经支持弹性布局(忽略IE6吧)。本文主要讲解弹性布局的基本语法并将其应用到实际网页布局中 如何应用弹性布局,代码如下: <!DOCTYPE html> <html lang="en"> <head> <meta ch ...
分类:
其他好文 时间:
2019-11-17 10:36:46
阅读次数:
125
helm模板文件chart编写语法详解 https://blog.51cto.com/qujunorz/2421328 需要学习一下. charts编写介绍 开始 快速创建一个chart模板,helm create mychart,执行命令后本地生成一个mychart目录. chart目录结构 Ch ...
分类:
其他好文 时间:
2019-11-16 11:01:42
阅读次数:
57
首先在 resources 目录下自定义一个配置文件 如sms.properties #短信平台相关 mall.sms.regionId=ch-hangzhou mall.sms.accessKeyId=********* mall.sms.accessKeySecret=********** ma ...
分类:
编程语言 时间:
2019-11-15 18:47:30
阅读次数:
70
<?php //curl下载远程图片到服务器 方法 function download($url, $path = 'images/'){ $ch = curl_init(); $names = mt_rand(100000,999999); curl_setopt($ch, CURLOPT_URL ...
分类:
Web程序 时间:
2019-11-15 10:40:48
阅读次数:
99
#include<bits/stdc++.h> using namespace std; unsigned long long n,z1=1331,z2=10000019,a[10005],ans=1; char ch[10005][1505]; unsigned long long hashh(i ...
分类:
其他好文 时间:
2019-11-14 20:05:17
阅读次数:
48
#include<bits/stdc++.h> using namespace std; int n,m,a,b,c,ne,tot,head[100008*30],ch[100008*30][3];long long val[100008*30],ans=-1; struct node{int nx ...
分类:
其他好文 时间:
2019-11-14 09:16:38
阅读次数:
56
1、 #include <stdio.h> #include <stdlib.h> int main() { int ch; int count = 0; FILE * fp; char fname[50]; printf("请输入文件名:\n"); scanf("%s", fname); getc ...
分类:
其他好文 时间:
2019-11-12 21:58:18
阅读次数:
109
int read(){ int a=0,b=1; char ch=getchar(); while((ch<'0'||ch>'9')&&(ch!='-')){ ch=getchar(); } if(ch=='-'){ b=-1; ch=getchar(); } while(ch>='0'&&ch<= ...
分类:
编程语言 时间:
2019-11-10 15:45:16
阅读次数:
186
联赛前练练码力. code: #include <vector> #include <cstdio> #include <cstring> #include <algorithm> #define N 200006 #define ll long long #define lson t[x].ch[ ...
分类:
其他好文 时间:
2019-11-10 11:55:24
阅读次数:
119
$Description$ "题面" 有$n(n include include include define re register define maxn 100010 using namespace std; inline int read() { int x=0,f=1; char ch=g ...
分类:
其他好文 时间:
2019-11-09 15:39:37
阅读次数:
78