制作鼠标在上晃动就改变属性,达到引起注意的效果,这两个都需要加上。 ol{ background-color: #FFC; border-color: #FFC; border-radius: 6px; } ol:hover{ background-color: #FF9; border-color ...
分类:
移动开发 时间:
2020-06-13 23:11:39
阅读次数:
87
cnpm install vue-router --save 带参数: 浏览器访问: 在页面中获取参数 子路由: <router-link :to="{ path: '/home' }" tag="li">to home</router-link> 可以把a设为li,这种router-link是声明 ...
分类:
其他好文 时间:
2020-06-13 10:51:29
阅读次数:
72
无序列表: <ul> <li></li> <li></li> </ul> 有序列表: <ol> <li></li> <li></li> </ol> 自定义列表: <dl> <dt></dt> <dd></dd> </dl> 表格: <table> <tr> <td></td> </tr> </tab ...
分类:
Web程序 时间:
2020-06-13 10:46:21
阅读次数:
97
1 <!DOCTYPE html> 2 <html> 3 4 <head> 5 <meta charset="utf-8" /> 6 <title></title> 7 </head> 8 <style type="text/css"> 9 ul li { 10 list-style: none; ...
分类:
其他好文 时间:
2020-06-13 10:33:33
阅读次数:
293
2010年: 李泉林:https://www.researchgate.net/profile/Quan-Lin_Li/publication/265566189_Constructive_computation_in_stochastic_models_with_applications_The_ ...
分类:
其他好文 时间:
2020-06-12 20:03:20
阅读次数:
41
问题: 用了 overflow:hidden 会影响 list-style,即当ul 中的li 的overflow 为hidden的时候 。属性 list-style 是不起作用的,不显示前面的点、圈等样式。 解决办法: 在 ul 或 li 内加入样式:list-style-position: in ...
分类:
其他好文 时间:
2020-06-11 19:46:35
阅读次数:
50
现象:当在better-scroll插件内使用fixed定位时,发现fixed失效 处理办法:把需要定位的标签放在better-scroll容器内但是在content外,即与better-scroll内的content容器平级 <div class="wrapper"> <ul class="con ...
分类:
其他好文 时间:
2020-06-11 10:46:34
阅读次数:
186
1.iptables简介 netfilter/iptables(简称为iptables)组成Linux平台下的包过滤防火墙,与大多数的Linux软件一样,这个包过滤防火墙是免费的,它可以代替昂贵的商业防火墙解决方案。 1.1 netfilter和iptables的区别 netfilter:指的是Li ...
分类:
其他好文 时间:
2020-06-11 01:04:20
阅读次数:
80
最近看到一篇20 个CSS高级技巧汇总的汇总,感触很深,不过我想,与技巧相比,有些常见css布局难题,有时候更加让我们的日常开发变得踌躇沮丧吧。在写这一篇文章之前,自己还写过一篇:我所不注意的那些CSS冷知识,但却阻止了我做项目的速度,如果你看了,我相信你也会受益的。 为什么此处li标签内的p元素看 ...
分类:
Web程序 时间:
2020-06-10 21:25:47
阅读次数:
69
将下拉菜单的ul高度设置为0,并且超出部分隐藏掉。 设置下拉菜单的高度添加过渡效果,高度为auto时过渡效果失效。 <style> ul{ list-style: none; margin: 0; padding: 0; } ul li a{ display: block; text-decorat ...
分类:
Web程序 时间:
2020-06-09 20:47:39
阅读次数:
81