- 贴心猫(Imcat)
- 贴心代码
- 详情
CSS:fix-居中, js函数前加分号, 单行/双行
发布:2017-10-09 08:16
点击880次
评论:0条
* fix-居中
position: fixed;
left: 0;
right: 0;
margin:0 auto;
* js函数前加分号和感叹号是什么意思?有什么用?
http://www.cnblogs.com/mq0036/p/4605255.html
* function与感叹号
https://swordair.com/function-and-exclamation-mark/
* 图片比率进化史:3:2、4:3、16:9的区别
http://art.china.cn/products/2015-11/24/content_8401337.htm
* 单行/双行
.zgty_box div.zgty_content:nth-of-type(odd){ float:left; }
.zgty_box div.zgty_content:nth-of-type(even){ float:right; }
* CSS3 RGBA
background: rgb(255,255,0);
color: rgb(255, 0, 0);
color: rgba(255, 0, 0,0.5);