(原)前端知识杂烩(css系列)
更新于 20170316
1. css hack
.pad{
padding:17px 0 0 17px; /* 普通写法 */
*padding:17px 0 0 17px; /* *为IE7 *+html css()为IE7 */
_padding:17px 0 0 17px; /* _为IE6 *html css()为IE6 */
}
2. css 设置圆角
.radius{
-moz-border-radius: 100px;
-webkit-border-radius: 100px;
border-radius:100px;
}
3. css 盒子阴影 (x,y,阴影模糊度,阴影颜色)
.shadow{
-moz-box-shadow: 3px 3px 4px #fff;
-webkit-box-shadow: 3px 3px 4px #fff;
box-shadow: 3px 3px 4px #fff;
filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=3px, OffY=3px, Color='#ffffff'); /* 盒子阴影 IE6,IE7 */
-ms-filter: "progid:DXImageTransform.Microsoft.dropshadow(OffX=3px, OffY=3px, Color='#ffffff')"; /* 盒子阴影 IE8 */
}
4. css 透明度
.lucency{
filter:alpha(opacity=80);
opacity:0.8;
}
5. css 文本超出范围省略号代替 ( 块级元素,强制单行,强制指定行数)
/* 超出一行 */
.over{
overflow:hidden;
white-space:nowrap;
text-overflow:ellipsis;
} /* 超出两行,省略号 */
.over2{
word-break: break-all;
display: -webkit-box;
-webkit-line-clamp:;
-webkit-box-orient: vertical;
overflow: hidden;
}
6. css 设置背景透明
.lucencyBg{
background-color:transparent;
}
7. css 文字中间划横线效果
.txtDec{
text-decoration:line-through;
}
8. css 背景图片定位 (通常为负数)
.posBg{
background-position:x y;
}
9. css 下拉框去掉三角形
.selectStyle{
appearance:none;
-moz-appearance:none;
-webkit-appearance:none;
}
10. css 输入框没有选中效果
.inp{
outline:none;
}
11. css 禁止页面图片拖曳 ( body )
body{
oncontextmenu="return false" ondragstart="return false" tstart="return false"
}
12. css 防止点击出现透明背景问题
.colorBg{
-webkit-tap-highlight-color:rgba(0,0,0,0);
}
13. css 未知宽度水平居中 相对浮动
.unknow_width_center1 {position:relative; left:50%; float:left;}
.unknow_width_center1 li {position:relative; right:50%; z-index:; float:left;}
14. css 容器内完全居中(垂直 & 水平)
.parent{ position:relative; width:300px; height:300px; margin:0 auto;}
.child{ position:absolute; left:; right:; bottom:; top:; width:50px; height:50px; overflow:auto; margin:auto;}
15. css 容器内文字垂直居中
.outer { display:table; width:578px; overflow:hidden;}
.middle {display:table-cell; vertical-align:middle;}
/*下面的CSS是针对IE7,IE6*/
<!--[if lte IE 7]>
<style>
.outer{position:relative;}
.middle{position: absolute; top: 50%;}
.inner{position: relative; top:-50%}
</style>
<![endif]-->
16. css textarea 输入框/输入区域不可随意拖动大小
.textarea{ resize:none; }
17. css radio / checkbox 选中样式设置(推荐用在移动端,pc端未经测试)
input[type=radio]{
-webkit-appearance: none;
appearance: none;
width:15px;
height:15px;
margin-top:-2px;
margin-left:3px;
cursor: pointer;
vertical-align:middle;
-webkit-border-radius:15px;
-moz-border-radius:15px;
border-radius:15px;
border:1px solid #e29452;
background-color:#fff;
}
input[type=radio]:checked::after {
content: url(../images/check.png);
margin-left:1px;
}
如图:
18. css 鼠标移上图片,图片放大
.fouce{width:300px;height:300px;overflow:hidden;}
.fouce>img{
width:100%;height:100%;
-webkit-transition:all 1s;
-moz-transition:all 1s;
-o-transition:all 1s;
}
.fouce:hover img{
-webkit-transition:all 1s;
-moz-transition:all 1s;
-o-transition:all 1s;
-moz-transform:scale(1.2,1.2);
-webkit-transform:scale(1.2,1.2);
-o-transform:scale(1.2,1.2);
} 然后, 在需要放大的 div 中添加 fouce classname 即可
19. css 三角形(下拉框或者对话框总会用到三角形吧,不用css3就可以搞定小三角形)
.border{
position: absolute;
left: 31px;
top: -8px;
display: block;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-bottom: 8px solid #FFFEC6;
}
20. css 针对不同的移动设备的方案(哪个不同写哪个)
@media (device-height:480px) and (-webkit-min-device-pixel-ratio:2){/* 兼容iphone4/4s */ .prize_round{ width: 70%;top: 8%;margin-left: -33%;} } @media (device-height:568px) and (-webkit-min-device-pixel-ratio:2){/* 兼容iphone5 */ .prize_round{ width: 78%;top: 9%;margin-left: -39%;} } @media (device-height:667px) and (-webkit-min-device-pixel-ratio:2){/* 兼容iphone6 */ .prize_round{ width: 80%;top: 8%;margin-left: -40%;} } @media (device-height:736px) and (-webkit-min-device-pixel-ratio:2){/* 兼容iphone6 Plus */ .prize_round{ width: 82%;top: 8%;margin-left: -41%;} }
21. css 移动端横屏 & 竖屏 样式
//竖屏时使用的样式
@media all and (orientation:portrait) {
.css{}
} //横屏时使用的样式
@media all and (orientation:landscape) {
.css{}
}
22. css table 边框
.order_table{
width: 100%;
border-collapse:collapse;
border:solid 1px #e6e6e6;
} .order_table tr td{
border: solid #e6e6e6;
border-width:0px 1px 1px 0px;
}
如图
23. 文字第一行缩进两个字符
.txt p{
text-indent: 2em;
}
(原)前端知识杂烩(css系列)的更多相关文章
- (原)前端知识杂烩(meta系列)
更新于 20160831 1. meta 移动端头文件设置 (一般情况下,逐条复制放在头部就可以了) 1.1 强制让文档的宽度与设备的宽度保持1:1,并且文档最大的宽度比例是1.0,且不允许用户点击屏 ...
- 前端知识之CSS(1)-css语法、css选择器(属性、伪类、伪元素、分组与嵌套)、css组合器
目录 前端基础之css 1.关于css的介绍 2.css语法 3.三种编写CSS的方式 3.1.style内部直接编写css代码 3.2.link标签引入外部css文件 3.3.标签内直接书写 4.c ...
- web前端知识大纲:系列二 css篇
web前端庞大而复杂的知识体系的组成:html.css和 javascript 二.css 1.CSS选择器 CSS选择器即通过某种规则来匹配相应的标签,并为其设置CSS样式,常用的有类选择器.标签选 ...
- 前端知识杂烩(HTML[5]?+CSS篇)
1. CSS 优先级算法如何计算?2.如何居中div?如何居中一个浮动元素?如何让绝对定位的div居中?3.用纯CSS创建一个三角形的原理是什么?4. 如何解决inline-block元素的空白间距( ...
- web前端知识大纲:系列三 html篇
web前端庞大而复杂的知识体系的组成:html.css和 javascript 三.HTML 1.BOM BOM 是 Browser Object Model的缩写,即浏览器对象模型,当一个浏览器页面 ...
- web前端知识大纲:系列一 js篇
web前端庞大而复杂的知识体系的组成:html.css和 javascript 一.js 1.基础语法 Javascript 基础语法包括:变量声明.数据类型. ...
- 前端知识杂烩(Javascript篇)
1. JavaScript是一门什么样的语言,它有什么特点?2.JavaScript的数据类型都有什么?3.请描述一下 cookies,sessionStorage 和 localStorage 的区 ...
- 【前端知识体系-CSS相关】CSS工程化方案
1.如何解决CSS的模块化问题? 使用Less,Sass等CSS预处理器 使用PostCSS插件(postcss-import/precss) 使用webpack处理CSS(css-loader + ...
- 【前端知识体系-CSS相关】CSS预处理器
1.常见的CSS预处理器有哪些? [!NOTE] css预处理器:用一种专门的编程语言,为CSS增加了一些编程的特性,将CSS作为目标生成文件,然后开发者就只要使用这种语言进行编码工作,可以让你的CS ...
随机推荐
- Linux远程登录
Linux远程登录 远程登录 关闭linux的防火墙 /etc/init.d/iptables stop 启动VNC服务器 Vncserver & 然后记住desktop is localho ...
- html5前端开发笔记-个人中心
简单的css自适应 PC端 *** 移动端 *** ) *** 一开始的想法就是模仿手机APP 的页面进行布局,首先得有个头部,然后是主题部分,然后加上2个按钮,分别是编辑和退出登录.先布出基本结构. ...
- Linux中yum的安装
下载安装yum: wget http://yum.baseurl.org/download/3.2/yum-3.2.28.tar.gz .tar.gz cd touch /etc/yum.conf c ...
- (转) Java程序员应该知道的10个调试技巧
原地址:http://www.csdn.net/article/2012-09-03/2809495-java-debugging-tips-with-eclipse 调试可以帮助识别和解决应用程序缺 ...
- (原)lua提示cannot load incompatible bytecode
转载请注明出处: http://www.cnblogs.com/darkknightzh/p/5754872.html 前段时间用终端和zerobrane运行torch的lua程序.zerobrane ...
- 利用反射动态构成sql语句
class Program { static void Main(string[] args) { People p = new Peo ...
- web中的中文字体的英文名称
自从font-face出现以后,字体样式就不再是web开发者的难题了,但是对于移动端的中文来说,问题还是存在的,因为中文文件大小最少要3M+,即使选择性的加载某个字的字体,那也会出现不易替换的问题,所 ...
- 1009 Enigma
本题的重点是理解清楚题意并能代码模拟.形式是二战德国密码机,和数据结构.算法联系较少. #include <stdio.h> #include <string.h> int m ...
- opencv中cvCreateImage大图片时出错
最近在做遥感图像的图像处理工作,使用了 OpenCV2.4.8来处理.遥感图像不同于一般图像的一个大的特点是图片容量超大,轻轻松松就能超过10000x10000个像素点,在OpenCV中使用cvCre ...
- TreeSet与HashSet的区别
Set是java中一个不包含重复元素的collection.更正式地说,set 不包含满足 e1.equals(e2) 的元素对 e1 和 e2,并且最多包含一个 null 元素.正如其名称所暗示的, ...