随笔分类 -  css

摘要:常见列表布局,效果如下图。常见图与图之间经常会留间距,下图图与图没留间距 1、第一种列表布局:float + margin 1.2、第一种列表布局相应代码 2、第二种列表布局:float + border(border充当间距) 解析:第二种方式开始列没有给间距 2.2、第二种列表布局相应代码 3、 阅读全文
posted @ 2018-09-06 21:41 N神3 阅读(2916) 评论(0) 推荐(0) 编辑
摘要:1、table样式首先设置表格边框,属性设置表格的边框是否被合并为一个单一的边框。 table{ border-collapse: collapse; border-spacing: 0;} 2、固定表头 2.1、原理:表头和表身分开,表身设置可滚动table-body{overflow-y:scr 阅读全文
posted @ 2018-09-05 20:54 N神3 阅读(3653) 评论(0) 推荐(0) 编辑
摘要:min-width: 浏览器缩小设置min-width,元素最小也是min-width设置的值。设置min-width元素不会压扁。 max-width:元素最大宽度 阅读全文
posted @ 2018-08-04 12:43 N神3 阅读(313) 评论(0) 推荐(0) 编辑
摘要:css自适应浏览器大小 1、屏幕 > 900px :显示3列 2、450px < 屏幕 < 900px :显示2列 3、屏幕 < 450px :显示1列 阅读全文
posted @ 2018-07-30 20:18 N神3 阅读(3044) 评论(0) 推荐(0) 编辑
摘要:加载动画css居中显示 阅读全文
posted @ 2018-05-26 00:36 N神3 阅读(373) 评论(0) 推荐(0) 编辑
摘要:keyframes应用在animation上,animation应用在元素上。 阅读全文
posted @ 2017-09-25 11:47 N神3 阅读(219) 评论(0) 推荐(0) 编辑
摘要:.arrow_box{animation: glow 800ms ease-out infinite alternate; } @keyframes glow { 0% { border-color: #393; box-shadow: 0 0 5px rgba(0,255,0,.2), inset 0 0 5px rgba(0,255,0,... 阅读全文
posted @ 2017-09-22 23:43 N神3 阅读(11102) 评论(1) 推荐(2) 编辑
摘要:js评价五星 1、图片(star.png): 2、图片和html文件在同级目录 阅读全文
posted @ 2017-09-21 22:13 N神3 阅读(564) 评论(0) 推荐(0) 编辑
摘要:1、顶部滚动条 阅读全文
posted @ 2017-09-19 22:48 N神3 阅读(168) 评论(0) 推荐(0) 编辑
摘要:在线css兼容性处理地址:autoprefixer.github.io 阅读全文
posted @ 2017-09-19 22:16 N神3 阅读(151) 评论(0) 推荐(0) 编辑
摘要://table1=head和table2=body水平滚动条级联滚动 $(document).ready(function () { 阅读全文
posted @ 2017-08-04 16:55 N神3 阅读(527) 评论(0) 推荐(0) 编辑
摘要:第一种: <div> <div class="right"> <p></p> <p></p> <p></p> </div> <div class="right"> <p></p> <p></p> <p></p> </div> </div> 第二种: <div> <p></p> <p></p 阅读全文
posted @ 2017-07-23 20:15 N神3 阅读(250) 评论(0) 推荐(0) 编辑
摘要:C语言 Java语言 Javascript语言 阅读全文
posted @ 2017-07-23 18:14 N神3 阅读(2040) 评论(0) 推荐(0) 编辑
摘要:/*蒙版*/ .loading-mask { width: 100%; height: 100%; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background-color: #fff; opacity: 0.3; filter: alph... 阅读全文
posted @ 2016-12-09 15:21 N神3 阅读(6623) 评论(0) 推荐(0) 编辑
摘要:white-space: nowrap 不换形 overflow: hidden 隐藏长度超出部分 text-overflow:ellipsis 文字长度超出用省略号代替 <p style="width:300px;line-height:20px;"> <span style="display:i 阅读全文
posted @ 2016-10-26 18:24 N神3 阅读(649) 评论(0) 推荐(0) 编辑
摘要:@keyframes rotating{from{transform:rotate(0)}to{transform:rotate(360deg)}}animation:rotating 1.2s linear infinite 阅读全文
posted @ 2016-07-20 09:09 N神3 阅读(12779) 评论(0) 推荐(1) 编辑
摘要:transform让背景图标旋转360度 a b {display: inline-block;width: 14px;height: 14px;background: url(/img/button_img.png) -1px -1px no-repeat; a:hover b {-moz-tra 阅读全文
posted @ 2016-07-14 11:20 N神3 阅读(182) 评论(0) 推荐(0) 编辑
摘要:<html><head><title>上传按钮样式优化</title> <style>.form-element-file-wapper { position: relative; width: 100px; height: 32px; overflow: hidden; margin: 0 aut 阅读全文
posted @ 2016-06-17 10:52 N神3 阅读(1243) 评论(0) 推荐(0) 编辑