内容过长显示固定长度部分 多余部分用省略号代替 table { table-layout: fixed; /* table内部布局固定大小 方便用width调节td的长度 */ /* 由于table-layout的默认值是auto,即table的宽高将取决于其内容 */ } td { white-s ...
分类:
Web程序 时间:
2021-04-02 13:09:12
阅读次数:
0
前提: 原统计文档中条目以空格分隔或只有一列(为了方便awk筛选出某一个列) 1 #!/usr/bin/env python 2 # -*- coding:utf-8 -*- 3 import sys 4 import os 5 6 PRINTRED = "\033[1;31m" 7 PRINTGR ...
分类:
编程语言 时间:
2021-03-18 14:42:22
阅读次数:
0
前台getshell https://cloud.tencent.com/developer/article/1690304 /index.php/api/Uploadify/preview data:image/php;base64,PD9waHAgcGhwaW5mbygpOw== 后台登陆后ge ...
分类:
其他好文 时间:
2021-03-17 14:10:34
阅读次数:
0
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>tab页切换</title> <style> .tab { background: grey; overflow: auto; width: 240px; bo ...
分类:
Web程序 时间:
2021-03-03 12:28:04
阅读次数:
0
一、流程控制 while循环:只要条件满足一直循环 read -p "请输入一个数字:" white_data while [ ${white_data} -lt 20 ] do echo ${white_data} white_data=$((white_data + 1)) done until ...
分类:
系统相关 时间:
2021-02-27 13:22:57
阅读次数:
0
import matplotlib.pyplot as plt # 定义一个画图函数 def sinplot(flip = 1): x = np.linspace(0,10,100) for i in range(1,4): y = np.sin(x + i * 0.5) * (4 - i) * f ...
分类:
其他好文 时间:
2021-02-24 13:05:31
阅读次数:
0
把文本限制在一行(white-space: nowrap;),并且你的溢出的部分要隐藏起来(overflow: hidden;),然后出现省略号( text-overflow: ellipsis)。 ...
分类:
其他好文 时间:
2021-02-20 11:57:58
阅读次数:
0
在 React 中使用 element-ui 安装 npm i element-react --save npm install element-theme-default --save #主题 使用 import React from 'react'; import ReactDOM from ' ...
分类:
其他好文 时间:
2021-02-18 13:45:53
阅读次数:
0
figure语法说明 figure(num=None, figsize=None, dpi=None, facecolor=None, edgecolor=None, frameon=True) num: 图像编号或名称,数字为编号 ,字符串为名称 figsize: 指定figure的宽和高,单位为 ...
分类:
其他好文 时间:
2021-02-17 14:19:28
阅读次数:
0
jmeter中文乱码解决方法 1、在jmeter的bin目录下,找到配置文件jmeter.properties 2、用记事本打开文件,找到sampleresult.default.encoding==ISO-8859-1 修改为 sampleresult.default.encoding=UTF-8 ...
分类:
其他好文 时间:
2021-02-08 12:23:42
阅读次数:
0