书架

书架

=一个知识书库=

CSS list-style-type 属性

CSS list-style-type 属性

## 实例 设置一些不同的列表样式: ### 无序列表实例 ```scss ul.circle {list-style-type: circle} ul.square {list-style-type: square} ``` ### 有序列表实例 ```scss ol.upper-roman {list-style-type: upper-roman} ol.lower-alpha {list-style-type: lower-alpha} ``` ![](http://www.lixianglong.cn/bg_store/img/cont
more...
css list-style-type属性笔记

css list-style-type属性笔记

# list-style-type属性定义及用法 # 在css中,list-style-type属性是使用来设置列表项标记的类型,在有序列表和无序列表中经常都会使用该属性。 目前,所有主流浏览器都支持list-style-type属性,但是任何版本的Internet Explorer(包括 IE8)都不支持属性值"decimal-leading-zero"、"lower-greek"、"lower-latin"、"upper-latin"、"armenian"、"georgian" 或 "inherit"; 如果需要同时设置多个列表属性,可以使用list-style属性,li
more...
css display:flex 属性

css display:flex 属性

# 一:display:flex 布局 # > display:flex 是一种布局方式。它即可以应用于容器中,也可以应用于行内元素。是W3C提出的一种新的方案,可以简便、完整、响应式地实现各种页面布局。目前,它已经得到了所有浏览器的支持。 > Flex是Flexible Box的缩写,意为"弹性布局",用来为盒状模型提供最大的灵活性。设为Flex布局以后,子元素的float、clear和vertical-align属性将失效。 <!--more--> # 二:flex的六个属性 # ## flex-direction 容器内元素的排列方向(默认横向排列)
more...
css flex与inline-flex的区别

css flex与inline-flex的区别

# 1 flex与inline-flex布局,都是弹性布局,盒状容器布局。 ![img](http://www.lixianglong.cn/bg_store/img/content/520a1058713649e59d4686c7eda7aab3.png) [Flex 布局是什么?_w3cschool](https://www.w3cschool.cn/flex_css/what-is-the-flex-layout.html) # 2 下面一个实例来说明一下: 有一个要求,要求item增多的时候,不会换行,并且container容器也会随时item的数量的增多,自动
more...
el-table表格行列拖拽办法

el-table表格行列拖拽办法

element ui 表格没有自带的拖拽排序的功能,只能借助第三方插件Sortablejs来实现,先来看一下动态图,效果是不是你们想要的。 ![](http://www.lixianglong.cn/bg_store/img/content/20180915235244991.gif) <!--more--> 首先需要安装Sortable.js npm install sortablejs --save 然后引用 import Sortable from ‘sortablejs’ 需要注意的是element table务必指定row-key,row-key必须是唯一的,如ID
more...