css新增属性 table tr:nth-child(1) { tr父盒子下面的第一个tr background-color: #ddd; } table tr:not(:first-child):hover { tr父盒子下面的tr下面除了第一个属性,别的都被hover background-color: #eee; } CSS3禁止用户选中文字——user-select: none;css渐变background-image: linear-gradient(to right, red, pink);取消a超链接下划线text-decoration: none;//取消a超链接下划线字体文本超出隐藏省略号显示white-space:nowrap; text-overflow:ellipsis; overflow:hidden;字体多行文本超出隐藏省略号显示overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 4;/*多行数*/ -webkit-box-orient: vertical;表单表单合并边框border-collapse: collapse;//表单合并边框css定位元素垂直居中position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); css不让用户双击选中user-select=none;看到这里了还不点个赞const style = 'color: red; background: skyblue; font-size: 24px; padding: 10px; font-weight: bold;' console.log('%c都看到这里了,还不点个赞?', style)