CSS 中文开发手册 规则 | At-rule (Conditional Rules) - CSS 中文开发手册 一个在规则是用在符号开头的CSS语句,“ @”( U+0040 COMMERCIAL AT),接着的标识符并且包括一切到下一个分号,“ ;”( U+003B SEMICOLON),或下一... ...
分类:
Web程序 时间:
2020-07-04 01:30:53
阅读次数:
62
CSS 中文开发手册 计数器样式 | @counter-style (Counter Styles) - CSS 中文开发手册 @counter-style是一个CSSat-rule,它让开发者可以自定义counter的样式。 一个@counter-style规则定义了如何把一个计数器的值转化为字符... ...
分类:
Web程序 时间:
2020-07-04 01:21:57
阅读次数:
98
一、模板的基础方法 Flask使用的是Jinja2模板,其语法与Django框架中模板系统一样,与模板相关联的方法有: render_template Markup jsonify make_response macro 二、基础方法的使用 1、render_template 该方法是对模板的渲染, ...
分类:
其他好文 时间:
2020-07-04 01:21:01
阅读次数:
81
We all, whether we know it or not, are fighting to make the kind of a world that we should like.不管意识到与否,我们都在为创造一个我们喜欢的世界而奋斗。 IDEA导入eclipse项目 弃用eclipse ...
分类:
系统相关 时间:
2020-07-03 15:46:11
阅读次数:
107
We all, whether we know it or not, are fighting to make the kind of a world that we should like.不管意识到与否,我们都在为创造一个我们喜欢的世界而奋斗。 Python —— pycharm初使用 电脑需要 ...
分类:
编程语言 时间:
2020-07-03 14:06:47
阅读次数:
95
题目 Eva is trying to make her own color stripe out of a given one. She would like to keep only her favorite colors in her favorite order by cutting off ...
分类:
其他好文 时间:
2020-07-02 19:53:26
阅读次数:
70
1.类名.__mro__ 可打印参看函数的所有父类 2.super()方法 class Master(object): def __init__(self): self.kongfu = '[古法煎饼果子配方]' def make_cake(self): print(f'运用{self.kongfu ...
分类:
其他好文 时间:
2020-07-02 13:22:12
阅读次数:
52
一、创建控制器(最后一个参数为控制器名) php artisan make:controller StudentController 二、创建模型(最后一个参数为模型名) php artisan make:model Student 三、创建中间件(最后一个参数为中间件名) php artisan ...
分类:
其他好文 时间:
2020-07-02 00:12:43
阅读次数:
58
CSS 中文开发手册 最小高度 | @viewport.min-height (Device Adaptation) - CSS 中文开发手册 min-heightCSS描述符指定通过@viewport的at-rule定义的一个文件视区的最小高度。 考虑到最小高度限制,最初将高度设置为尽可能接近初始... ...
分类:
Web程序 时间:
2020-07-01 22:27:17
阅读次数:
72
map特点: map是无序的基于key-value的数据结构。map是引用类型,其内部使用散列表(hash)实现 必须初始化才能使用 map操作: var m1 map[string]int //声明:key为string类型,值为int类型 m1 = make(map[string]int, 10 ...
分类:
其他好文 时间:
2020-07-01 19:58:52
阅读次数:
66