css 代码片段

以下是常用的代码收集,没有任何技术含量,只是填坑的积累。转载请注明出处,谢谢。

1. css 2.x

  • 文字换行

    1
    2
    3
    4
    5
    6
    7
    /*强制不换行*/
    white-space:nowrap;
    /*自动换行*/
    word-wrap: break-word;
    word-break: normal;
    /*强制英文单词断行*/
    word-break:break-all;
  • 两端对齐

    1
    text-align:justify;text-justify:inter-ideogra
  • 去掉Webkit(chrome)浏览器中input(文本框)或textarea的黄色焦点框

    1
    2
    input,button,select,textarea{ outline:none;}
    textarea{ font-size:13px; resize:none;}
  • 去掉chrome记住密码后自动填充表单的黄色背景

  • ie6: position:fixed

1
2
3
.fixed-top /* position fixed Top */{position:fixed;bottom:auto;top:0; }
* html .fixed-top /* IE6 position fixed Top */{position:absolute;bottom:auto;top:expression(eval(document.documentElement.scrollTop));}
*html{background-image:url(about:blank);background-attachment:fixed;}
  • clearfix
1
2
3
4
5
6
7
8
9
.clearfix:after{visibility:hidden;display:block;font-size:0;content:" ";clear:both;height:0;}
.clearfix{display:inline-block;}
html[xmlns] .clearfix{display:block;}
* html .clearfix{height:1%;}

.clearfix{*zoom: 1;}
.clearfix:after{clear:both;display:table;content:"";}

.clearfix{overflow:hidden;_zoom:1;}

https://www.cnblogs.com/blog-leo/p/3959217.html
https://www.daqianduan.com/3606.html

  • seperate-table
1
2
3
4
.tab{border-collapse:separate;border:1px solid #e0e0e0;}
.tab th,.tab td{padding:3px;font-size:12px;background:#f5f9fb;border:1px solid;border-color:#fff #deedf6 #deedf6 #fff;}
.tab th{background:#edf4f0;}
.tab tr.even td{background:#fff;}
1
2
3
4
5
6
7
8
9
10
<table class="tab" width="100%" cellpadding="0" cellspacing="0" border="0">
<tr>
<th>111</th>
<td>222</td>
</tr>
<tr>
<th>111</th>
<td>222</td>
</tr>
</table>
  • min-height: 最小高度兼容代码
1
.minheight500{min-height:500px;height:auto !important;height:500px;overflow:visible;}
  • 鼠标不允许点击
1
cursor:not-allowed;
  • mac font: osx平台字体优化
1
font-family:"Hiragino Sans GB","Hiragino Sans GB W3",'微软雅黑';
  • 文字过多后显示省略号
1
.ellipsis,.ell{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}

2. css 3

  • 投影
1
2
3
4
.b{box-shadow:inset 1px -1px 0 #f1f1f1;text-shadow:1px 1px 0px #630;}
filter:progid:DXImageTransform.Microsoft.gradient(enabled='true',startColorstr='#99000000',endColorstr='#99000000');background:rgba(0,0,0,.6);

background:rgba(0,0,0,0.5);filter:progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#50000000',endColorstr='#50000000')\9;
  • search占位
1
2
3
4
5
6
7
8
9
::-webkit-input-placeholder {}
::-moz-input-placeholder {}
input:focus::-webkit-input-placeholder { color: transparent; }
-webkit-appearance:none; google边框去除
input[type="search"]{-webkit-appearance:textfield;} // 去除chrome默认样式
https://i.wanz.im/2011/02/04/remove_border_from_input_type_search/
https://blog.csdn.net/do_it__/article/details/6789699
line-height: normal; /* for non-ie */
line-height: 22px\9; /* for ie */
  • title 换行
1
&#13;
  • 关闭 x 符号
1
&#215;
  • 全部浏览器的兼容代码生成
    CSS 实现 textArea 的 placeholder 换行

  • 阻止默认事件

1
pointer-events:none;
  • 变灰 gray
1
2
3
4
5
6
7
8
9
10
html{
filter: grayscale(100%);
-webkit-filter: grayscale(100%);
-moz-filter: grayscale(100%);
-ms-filter: grayscale(100%);
-o-filter: grayscale(100%);
filter: url("data:image/svg+xml;utf8,<svg xmlns=\'https://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
filter:progid:DXImageTransform.Microsoft.BasicImage(grayscale=1);
-webkit-filter: grayscale(1);
}
  • firefox 阻止选中
1
-moz-user-focus:ignore;-moz-user-input:disabled;-moz-user-select:none;
  • 箭头
1
2
3
4
display:block;border:solid transparent;line-height: 0;width:0; height:0;border-top:solid #0288ce;border-width:8px 6px 0 6px;

border-style:solid; border-width:7px; border-color:transparent transparent transparent #ff7020;
position:absolute;top: 0;left: 0;border-width:20px;border-style:solid;border-color:#d1ddde transparent transparent #d1ddde;

ie6 bug测试,把border-style设为dashed.

  • 取消textarea右下角可拖动手柄
1
resize:none
  • 取消chrome form表单的聚焦边框

    1
    2
    input,button,select,textarea{outline:none}
    textarea{resize:none}
  • 取消a链接的黄色边框

    1
    a{-webkit-tap-highlight-color:rgba(0,0,0,0);}
  • webkit 水平居中

1
display:-webkit-box;-webkit-box-pack:center; -webkit-box-align: center;
  • 取消chrome 搜索x提示
1
2
3
4
5
6
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
display: none;
}
  • chrome取消默认黄色背景
1
2
3
4
5
6
7
input:-webkit-autofill {-webkit-box-shadow: 0 0 0px 1000px white inset;}
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
-webkit-box-shadow: 0 0 0 1000px white inset;
}
autocomplete="off"
  • 手机版本网页a标记虚线框问题
1
a:focus {outline:none;-moz-outline:none;}
  • 焦点去除背景
1
2
-webkit-tap-highlight-color:rgba(255, 255, 255, 0);
-webkit-tap-highlight-color:transparent; // i.e. Nexus5/Chrome and Kindle Fire HD 7''
  • placeholder占位符颜色自定义
1
2
input:-moz-placeholder {color: #369;}
::-webkit-input-placeholder {color:#369;}
  • IOS 禁用高亮
1
-webkit-tap-highlight-color:rgba(255,0,0,0.5);-webkit-tap-highlight-color:transparent; /* For some Androids */
  • 用户不能选择元素中的任何内容
1
user-select:none
  • 移动端H5点击阴影
1
2
3
4
5
6
div,a,img {
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
-webkit-user-select: none;
user-select:none;
}
  • IOS iframe 滚动 滚动回弹特效
1
-webkit-overflow-scrolling:touch;overflow-y:scroll;
  • 禁止选中文本
1
2
3
4
-moz-user-select:none;
-webkit-user-select:none;
-ms-user-select:none;
user-select:none;
  • 模糊(毛玻璃)效果1
  • 模糊(毛玻璃)效果2
  • 模糊(毛玻璃)逼真效果
1
2
3
4
5
6
.blur {    
-webkit-filter: blur(10px); /* Chrome, Opera */
-moz-filter: blur(10px);
-ms-filter: blur(10px);
filter: blur(10px);
}
1
2
<img src="mm1.jpg" />
<img src="mm1.jpg" class="blur" />
  • 显示旋转加载图片,下拉加载数据
1
2
3
4
5
6
7
8
9
#pullDown .pullDownIcon{display:inline-block;vertical-align:middle;width:40px;height:40px;background:url(https://github.com/chalecao/chale/blob/master/pull-icon%402x.png) 0 0 no-repeat;-webkit-background-size:40px 80px;background-size:40px 80px;-webkit-transition-property:-webkit-transform;-webkit-transition-duration:250ms}
#pullDown .pullDownIcon{-webkit-transform:rotate(0deg) translateZ(0)}
#pullDown .pullDownLabel{display:inline-block;vertical-align:middle;margin-left:5px;}
#pullDown.flip .pullDownIcon{-webkit-transform:rotate(-180deg) translateZ(0)}
#pullDown.loading .pullDownIcon{background-position:0 100%;-webkit-transform:rotate(0deg) translateZ(0);-webkit-transition-duration:0ms;-webkit-animation-name:loading;-webkit-animation-duration:2s;-webkit-animation-iteration-count:infinite;-webkit-animation-timing-function:linear}
@-webkit-keyframes loading{
from{-webkit-transform:rotate(0deg) translateZ(0)}
to{-webkit-transform:rotate(360deg) translateZ(0)}
}
1
2
3
<div id="pullDown" class="none loading">
<span class="pullDownIcon"></span><span class="pullDownLabel">正在载入中...</span>
</div>
  • 居中
  • css media :通过媒体查询为不同的设备和大小配置不同的样式。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/* media */
/* 横屏 */
@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){

}
/* windows UI 贴靠 */
@media screen and (-ms-view-state:snapped){

}
/* 打印 */
@media print{

}
  • flexbox
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
.flex-cont{
/*定义为flexbox的“父元素”*/
display: -webkit-box;
display: -webkit-flex;
display: flex;
/*子元素沿主轴对齐方式居中*/
-webkit-box-pack: center;
-webkit-justify-content: center;
justify-content: center;
/*子元素沿侧轴对齐方式垂直居中*/
-webkit-box-align: center;
-webkit-align-items: center;
align-items: center;
/*指定主轴的伸缩流方向是纵向的*/
-webkit-box-orient:vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
flex-direction: column;
}
.flex-item{
/*不要给flexbox里的子元素设置“margin:auto”的属性,在部分安卓机下,它会导致该元素的宽度撑开到100%占位*/
/*在旧版的规范中,使用比例伸缩布局时,子元素的内容长短不同会导致无法“等分”,这个时候,我们需要给子元素设置一个“width:0%”来解决问题*/
width: 0%;
/*给“子元素”赋予自由伸缩的能力*/
-webkit-box-flex: 1;
-webkit-flex: 1;
flex:1;
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*使用无衬线字体*/
body {
font-family: "Helvetica Neue", Helvetica, STHeiTi, sans-serif;
}

/*禁止长按链接与图片弹出菜单*/
a, img {
-webkit-touch-callout: none;
}

/*禁止选中文本*/
html, body {
-webkit-user-select: none;
user-select: none;
}

/* 如何禁止选中文字 */
.noselect {
-webkit-touch-callout: none; /* iOS Safari */
-webkit-user-select: none; /* Chrome/Safari/Opera */
-khtml-user-select: none; /* Konqueror */
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* Internet Explorer/Edge */
user-select: none; /* Non-prefixed version, currently not supported by any browser */
}

/*去掉webkit默认的表单样式*/
button,input,optgroup,select,textarea {
-webkit-appearance:none;
}

/*去掉a、input和button点击时的蓝色外边框和灰色半透明背景*/
a,button,input,optgroup,select,textarea {
-webkit-tap-highlight-color:rgba(0,0,0,0);
}

/*修改webkit中input的planceholder样式*/
input::-webkit-input-placeholder {
color:#ccc;
}

/*修改webkit中focus状态下input的planceholder样式*/
input:focus::-webkit-input-placeholder {
color:#f00;
}

/*禁止IOS调整字体大小*/
body {
-webkit-text-size-adjust: 100%!important;
}

/*隐藏Android的语音输入按钮*/
input::-webkit-input-speech-button {
display: none;
}
坚持原创技术分享,您的支持将鼓励我继续创作!
  • 本文作者: Leo
  • 本文链接: https://xuebin.me/posts/809788d9.html
  • 版权声明: 本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!