<!DOCTYPE html><html> <head> <style> .item img { width:200px; height:200px; } .item { margin-bottom: 20px; } </style> </head> <body> <div id="drag-wra ...
分类:
编程语言 时间:
2021-01-28 11:37:07
阅读次数:
0
<!DOCTYPE html> <head> <meta charset="utf-8"> <title></title> <style type="text/css"> ul,li { list-style: none; margin: 0; padding: 0; } .tabBox { wid ...
分类:
Web程序 时间:
2021-01-27 14:03:18
阅读次数:
0
声明:本文摘抄自公众号: Java技术前线 1.IDEA 设置代码行宽度 > 1.在File->settings->Editor->Code Style > 2.有人会问,如果输入的代码超出宽度界线时,如何让IDE自动将代码换行?``有两种方式! > 3.第一种,在上述的“Right margin ...
分类:
其他好文 时间:
2021-01-25 10:49:48
阅读次数:
0
一、函数结构 1.函数:函数以功能为导向,用代码实现特定的功能,这样能够有效减少代码的重复性,同时增强代码的可读性(通过名字就可以直观的看出代码的功能)。 自定义函数结构:def 函数名(): 函数体 其中def是定义英文单词的缩写,是必须要有的,函数名可以自定义,函数体就是实现功能的代码,需要注意 ...
分类:
其他好文 时间:
2021-01-21 10:57:41
阅读次数:
0
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_ ...
分类:
其他好文 时间:
2021-01-21 10:51:22
阅读次数:
0
原代码:<div v-show="uploader" class="table-operator" style="margin-top: 10px;margin-bottom: 10px;float:right; "> <a-upload name="file" :showUploadList="f ...
分类:
其他好文 时间:
2021-01-20 12:05:48
阅读次数:
0
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <style type="text/css"> 6 *{ 7 margin: 0; 8 padding: 0; 9 } 10 nav ul{ 11 list-style: n ...
分类:
其他好文 时间:
2021-01-20 11:56:23
阅读次数:
0
一:背景图像区域: background-clip:指定背景绘制区域 border-box:背景被剪裁到边框盒 padding-box:背景被剪裁到内边距框 content-box:背景被剪裁到内容框 content-box padding-box border-box <!DOCTYPE html ...
分类:
Web程序 时间:
2021-01-18 10:43:54
阅读次数:
0
/*文章内图片*/ #cnblogs_post_body p img { margin:10px; } /*顶一下*/ .diggnum { font-size:28px; color:#6DA47D; font-family:'Microsoft Yahei'; } #div_digg{ widt ...
分类:
其他好文 时间:
2021-01-16 11:55:56
阅读次数:
0
1.django - templates - base.html <! my furst base html > <h3 style="margin:auto;width:50%;" >小萌信息技术开放职位</h3> <p> </p> <hr> {% block header %} <a href= ...
分类:
Web程序 时间:
2021-01-15 11:50:35
阅读次数:
0