积累了几个有趣的CSS小技巧。
html,body,h1,h2,h3,h4,h5,h6,div,dl,dt,dd,ul,ol,li,p,blockquote,pre,hr,figure,table,caption,th,td,form,fieldset,legend,input,button,textarea,menu{margin:0;padding:0;}
header,footer,section,article,aside,nav,hgroup,address,figure,figcaption,menu,details{display:block;}
table{border-collapse:collapse;border-spacing:0;}
caption,th{text-align:left;font-weight:normal;}
html,body,fieldset,img,iframe,abbr{border:0;}
i,cite,em,var,address,dfn{font-style:normal;}
[hidefocus],summary{outline:0;}
li{list-style:none;}
h1,h2,h3,h4,h5,h6,small{font-size:100%;}
sup,sub{font-size:83%;}
pre,code,kbd,samp{font-family:inherit;}
q:before,q:after{content:none;}
textarea{overflow:auto;resize:none;}
label,summary{cursor:default;}
a,button{cursor:pointer;}
h1,h2,h3,h4,h5,h6,em,strong,b{font-weight:bold;}
del,ins,u,s,a,a:hover{text-decoration:none;}
body,textarea,input,button,select,keygen,legend{font:12px/1.14 arial,\5b8b\4f53;color:#333;outline:0;}
body{background:#fff;}
a,a:hover{color:#333;}
border: none;
-moz-appearance:none;
-webkit-appearance: none;
border-radius: 0;
outline:medium;
background-color: transparent;
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
box-shadow: 0 0 0px 1000px white inset;
}
// 选中自动填充后字体颜色并不会改变,需要添加以下代码
input {
-webkit-text-fill-color: #fff; //设计稿的色
}
-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
-webkit-user-select: none;
-moz-user-focus: none;
-moz-user-select: none;
input[type=number] {
-moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
html, body {
-webkit-overflow-scrolling: touch;
}
有时候动画可能会导致用户的电脑卡顿,你可以在特定元素中使用硬件加速来避免这个问题:
.block {
transform: translateZ(0);
}
可以针对不同的媒体类型定义不同的样式。
/* 横屏 */
@media screen and (orientation:landscape){
}
/* 竖屏 */
@media screen and (orientation:portrait){
}
/* 窗口宽度<960,设计宽度=768 */
@media screen and (max-width:959px){
}
/* 窗口宽度<768,设计宽度=640 */
@media screen and (max-width:767px){
}
/* 窗口宽度<640,设计宽度=480 */
@media screen and (max-width:639px){
}
/* 窗口宽度<480,设计宽度=320 */
@media screen and (max-width:479px){
}
/* 设备像素比为2 */
/* 常用于1px边框,还应规定 3dppx 的情况 */
@media (min-resolution: 2dppx) {
}
Document
html {
font-size: calc(100vw / 7.5);
}
// 普通三角形
.triangle {
width: 0;
height: 0;
border-style: solid;
border-width: 50px 0 50px 100px;
border-color: transparent transparent transparent #00adb5;
}
// 直角三角形
.triangle {
width: 0;
height: 0;
border-style: solid;
border-width: 100px 100px 0 0;
border-color: #00adb5 transparent transparent transparent;
}
当文本内容长度超过容器最大宽度时,自动省略多余的文本。
这是一段最多显示一行的文字,多余的内容会被省略
这是一段最多显示两行的文字,多余的内容会被省略
这是一段最多显示三行的文字,多余的内容会被省略
.c-ellipsis,
.c-ellipsis-1 {
@include ellipsis();
}
.c-ellipsis-2 {
@include ellipsis(2);
}
.c-ellipsis-3 {
@include ellipsis(3);
}
@mixin ellipsis($column: 1) {
overflow: hidden;
-o-text-overflow: ellipsis;
text-overflow: ellipsis;
@if $column == 1 {
white-space: nowrap;
} @else {
display: -webkit-box;
white-space: normal !important;
word-wrap: break-word;
-webkit-line-clamp: $column;
-webkit-box-orient: vertical
}
}
.c-underline,
.c-underline__top,
.c-modal__title {
position: relative;
}
.c-underline::after,
.c-underline__top::after {
content: "";
position: absolute;
right: 0;
bottom: 0;
left: 0;
z-index: 2;
height: 1px;
transform: scaleY(0.5);
background-color: #ededed;
}
.c-underline__top:after {
top: 0;
bottom: auto;
}
@keyframes fadeIn {
0% {
opacity: 0
}
100% {
opacity: 1
}
}
.fadeIn {
animation-name: fadeIn;
}
@keyframes fadeOut {
0% {
opacity: 1
}
100% {
opacity: 0
}
}
.fadeOut {
animation-name: fadeOut;
}
@keyframes c-spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.c-spin{
animation-name: c-spin;
}
在0-80以内,是4的倍数或者是12的倍数。
ptb 上下内边距
plr 左右内边距
p t b l r上下左右边距
// 定义内外边距,历遍1-80
@for $i from 0 through 80 {
// 只要能被4除尽的数或者12的倍数
@if $i % 4 == 0 or $i % 12 == 0 {
.hr#{$i} {
height: $i + rpx;
background-color: #f5f5f5;
display: block;
}
// ptb30 plr30 p24
.ptb#{$i} {
padding-top: $i + rpx !important;
padding-bottom: $i + rpx !important;
}
.plr#{$i} {
padding-left: $i + rpx !important;
padding-right: $i + rpx !important;
}
.p#{$i} {
padding: $i + rpx !important;
}
@each $short, $long in l left, t top, r right, b bottom {
// 缩写版,ml30
.m#{$short}#{$i} {
margin-#{$long}: $i + rpx !important;
}
.p#{$short}#{$i} {
padding-#{$long}: $i + rpx !important;
}
}
}
}