* { margin: 0; padding: 0; font-family: "Poppins",sans-serif; } body { display: flex; justify-content: center; align-items: center; background:rgb(76, ...
分类:
Web程序 时间:
2021-05-24 01:25:27
阅读次数:
0
##General English:6-Elementary ###1 Vocabulary Metting words agenda,items,new hires,short time,for personal reasons,visitors,clean up,continue,update ...
分类:
其他好文 时间:
2021-05-23 22:57:55
阅读次数:
0
解包: d = {"username":"admin","password":"123456"}print(d.items())# [('username', 'admin'), ('password', '123456')]for k,v in d.items(): print(k,v)递归 #函 ...
分类:
编程语言 时间:
2021-05-04 15:37:45
阅读次数:
0
vue中动态给自定义属性data-xx赋值并读取内容 <template v-for="item in items"> <a href="#" :data-item="item" @click.prevent="onClick" class="item" v-if="showHots">{{ ite ...
分类:
其他好文 时间:
2021-04-26 13:42:54
阅读次数:
0
方法2:display:flex 1 2 3 4 5 .box2{ display: flex; justify-content:center; align-items:Center; } 方法3:绝对定位和负边距 .box3{position:relative;} .box3 span{ posi ...
分类:
Web程序 时间:
2021-04-24 13:51:53
阅读次数:
0
range() 函数 日常工作中,range() 应该非常熟悉了,它可以生成一个迭代对象,然后可以使用 list() 将它转成一个 list # 判断是不是迭代对象 print(isinstance(range(0, 10), Iterable)) # 生成列表 lists = list(range ...
分类:
编程语言 时间:
2021-04-16 11:49:05
阅读次数:
0
公交站点显示 using System.Collections.Generic; usinSystem.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; usi ...
分类:
其他好文 时间:
2021-04-12 12:40:32
阅读次数:
0
Scrapy 如何控制导出顺序 1. 遇到的问题 在用Scrapy到处item的时候,发现顺序错乱(应该是按照abc的顺序排列的),并不是items.py文件中定义的顺序,那么如何控制呢? 2. fields_to_export 我在查看官网文档的时候找到了这个属性,它的解释是这样的: fields ...
分类:
其他好文 时间:
2021-04-05 12:28:39
阅读次数:
0
我创建的item是这样的: last("192.168.64.254:IfHCOutOctets[GigabitEthernet1/0/35]")+last("192.168.64.254:IfHCOutOctets[GigabitEthernet1/0/41]")+last("192.168.64 ...
分类:
其他好文 时间:
2021-04-02 12:57:16
阅读次数:
0
父元素:box1,子元素:box2; 持续补充中。。。。。 一、子div定宽高 1. flex布局 .box1{ width: 300px; height: 300px; border: 1px solid red; display: flex; align-items: center; } .bo ...
分类:
其他好文 时间:
2021-04-01 13:41:10
阅读次数:
0