07 2021 档案
摘要:em 和 rem 都是相对单位, em 是相对与父元素字体大小, 例如父元素 font-size: 12px; 子元素 width: 10em; height: 10em; 说明子元素宽 120px 高 120px
阅读全文
摘要:查看Linux内核 [root@VM-0-16-centos ~]# uname -r 3.10.0-1160.11.1.el7.x86_64 查看Linuxbanben [root@VM-0-16-centos ~]# cat /etc/os-release NAME="CentOS Linux"
阅读全文
摘要:单行文本溢出隐藏 需要保证元素是块元素, 行内元素不具有切割的能力 .box{ /* display: block; */ white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } 多行文本溢出 .box{ overflow:
阅读全文
摘要:Command Description $ rpm -q centos-release CentOS version valid for CentOS 6 and higher. Causes to reveal major, minor and asynchronous CentOS versio
阅读全文