CSS好看的背景渐变色代码分享
.text_gradient{ width:500px; height:100px; background: linear-gradient(25deg, rgb(79, ...
.text_gradient{ width:500px; height:100px; background: linear-gradient(25deg, rgb(79, ...
.text_shadow{ width:500px; height:100px; box-shadow: 0px 0px 13px 1px rgba(51, 51, 51,...
CSS子元素固定宽度 父元素宽度被撑开不换行的办法/*父元素下的子元素是行内元素*/.wrap { white-space: nowrap;}/* 若父元素下的子元素是块级元素*...
css修改input输入框中光标的颜色不改变字体的颜色代码input{ color: #fff; caret-color: red;}
css消除transition闪屏代码:.wrap { -webkit-transform-style: preserve-3d; -webkit-backface-v...
p {text-transform: uppercase} /* 将所有字母变成大写字母*/p {text-transform: lowercase} /* 将所有字母变成小写...
在浏览器中用css开启硬件加速,使GPU (Graphics Processing Unit) 发挥功能,从而提升性能。硬件加速在移动端尤其有用,因为它可以有效的减少资源的利用。目...
CSS禁止用户选择(防采集小妙招).wrap { -webkit-touch-callout: none; -webkit-user-select: none; -khtml...
first-child first-child 表示选择列表中的第一个标签。last-child last-child 表示选择列表中的最后一个标签nth-child(3) 表示选...