[#rotate2D,#rotate3D { width: 80px; height: 70px; color: white; position:relative; font-weight:bold; font-size:15px; padding:10px; float:left; margin-... ...
分类:
Web程序 时间:
2020-07-05 13:26:25
阅读次数:
120
我的代码居然过了。。 class Solution: def expand(l,s): r = False for item in l: left = item[0] right = item[1] if left>=1 and s[left-1]=='(' and right+1<len(s) a ...
分类:
其他好文 时间:
2020-07-05 00:40:40
阅读次数:
53
#盒模型-Box Model,用来对HTML元素布局时使用 组成部分:元素内容content、内边距padding、边框border、外边距margin #内边距padding padding-top/right/bottom/left 简写属性padding #边框border border-st ...
分类:
Web程序 时间:
2020-07-04 17:15:06
阅读次数:
70
1.写在方法体里面 表格上 <el-table-column label="序号" type="index" :index='indexMethod' width="80" align="center"></el-table-column> 定义的分页 const defaultListQuery ...
分类:
其他好文 时间:
2020-07-04 16:58:14
阅读次数:
113
'{格式字符串}'.format(参数) 格式字符串:普通字符串和{替换格式符}组成的字符串 参数:匹配替换的内容 格式说明标记的语法格式为: [ [fill] align] [sign] [width] [,] [.precision] [type] fill:设置填充的字符,可省略,默认为空格; ...
分类:
其他好文 时间:
2020-07-03 23:28:02
阅读次数:
79
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
# Definition for a binary tree node.class TreeNode: def __init__(self, x): self.val = x self.left = None self.right = Nonea = TreeNode(1)b = TreeNode( ...
分类:
其他好文 时间:
2020-07-03 21:20:02
阅读次数:
56
先看效果图吧 html部分写法 <el-table-column label="操作" width="120" align="center"> <template slot-scope="scope"> <el-dropdown placement="bottom" trigger="click"> ...
分类:
其他好文 时间:
2020-07-03 19:28:44
阅读次数:
242
.form-item /deep/ .form-item-label { text-align: left !important; } 给父元素加 /deep/ , 设置想改子元素的样式 , 加 !important ...
分类:
其他好文 时间:
2020-07-03 19:20:15
阅读次数:
92