css所有属性大合集,包含中文标题

最近在开发后的编辑页面项目需要,收集了css所有属性和中文标题,可用于需要输入css属性或者输入框联想。

干货没什么废话,上代码就完了,有需要的点点赞支持一下

[
    {
        "attr": "@keyframes",
        "title": "定义一个动画,@keyframes定义的动画名称用来被animation-name所使用。"
    },
    {
        "attr": "animation",
        "title": "复合属性。检索或设置对象所应用的动画特效。"
    },
    {
        "attr": "animation-name",
        "title": "检索或设置对象所应用的动画名称 ,必须与规则@keyframes配合使用,因为动画名称由@keyframes定义"
    },
    {
        "attr": "animation-duration",
        "title": "检索或设置对象动画的持续时间"
    },
    {
        "attr": "animation-timing-function",
        "title": "检索或设置对象动画的过渡类型"
    },
    {
        "attr": "animation-delay",
        "title": "检索或设置对象动画的延迟时间"
    },
    {
        "attr": "animation-iteration-count",
        "title": "检索或设置对象动画的循环次数"
    },
    {
        "attr": "animation-direction",
        "title": "检索或设置对象动画在循环中是否反向运动"
    },
    {
        "attr": "animation-play-state",
        "title": "检索或设置对象动画的状态"
    },
    {
        "attr": "background",
        "title": "复合属性。设置对象的背景特性。"
    },
    {
        "attr": "background-attachment",
        "title": "设置或检索背景图像是随对象内容滚动还是固定的。必须先指定background-image属性。"
    },
    {
        "attr": "background-color",
        "title": "设置或检索对象的背景颜色。"
    },
    {
        "attr": "background-image",
        "title": "设置或检索对象的背景图像。"
    },
    {
        "attr": "background-position",
        "title": "设置或检索对象的背景图像位置。必须先指定background-image属性。"
    },
    {
        "attr": "background-repeat",
        "title": "设置或检索对象的背景图像如何铺排填充。必须先指定background-image属性。"
    },
    {
        "attr": "background-clip",
        "title": "指定对象的背景图像向外裁剪的区域。"
    },
    {
        "attr": "background-origin",
        "title": "S设置或检索对象的背景图像计算background-position时的参考原点(位置)。"
    },
    {
        "attr": "background-size",
        "title": "检索或设置对象的背景图像的尺寸大小。"
    },
    {
        "attr": "border",
        "title": "复合属性。设置对象边框的特性。"
    },
    {
        "attr": "border-bottom",
        "title": "复合属性。设置对象底部边框的特性。"
    },
    {
        "attr": "border-bottom-color",
        "title": "设置或检索对象的底部边框颜色。"
    },
    {
        "attr": "border-bottom-style",
        "title": "设置或检索对象的底部边框样式。"
    },
    {
        "attr": "border-bottom-width",
        "title": "设置或检索对象的底部边框宽度。"
    },
    {
        "attr": "border-color",
        "title": "置或检索对象的边框颜色。"
    },
    {
        "attr": "border-left",
        "title": "复合属性。设置对象左边边框的特性。"
    },
    {
        "attr": "border-left-color",
        "title": "设置或检索对象的左边边框颜色。"
    },
    {
        "attr": "border-left-style",
        "title": "设置或检索对象的左边边框样式。"
    },
    {
        "attr": "border-left-width",
        "title": "设置或检索对象的左边边框宽度。"
    },
    {
        "attr": "border-right",
        "title": "复合属性。设置对象右边边框的特性。"
    },
    {
        "attr": "border-right-color",
        "title": "设置或检索对象的右边边框颜色。"
    },
    {
        "attr": "border-right-style",
        "title": "设置或检索对象的右边边框样式。"
    },
    {
        "attr": "border-right-width",
        "title": "设置或检索对象的右边边框宽度。"
    },
    {
        "attr": "border-style",
        "title": "设置或检索对象的边框样式。"
    },
    {
        "attr": "border-top",
        "title": "复合属性。设置对象顶部边框的特性。"
    },
    {
        "attr": "border-top-color",
        "title": "设置或检索对象的顶部边框颜色"
    },
    {
        "attr": "border-top-style",
        "title": "设置或检索对象的顶部边框样式。"
    },
    {
        "attr": "border-top-width",
        "title": "设置或检索对象的顶部边框宽度。"
    },
    {
        "attr": "border-width",
        "title": "设置或检索对象的边框宽度。"
    },
    {
        "attr": "outline",
        "title": "复合属性。设置或检索对象外的线条轮廓。"
    },
    {
        "attr": "outline-color",
        "title": "设置或检索对象外的线条轮廓的颜色。"
    },
    {
        "attr": "outline-style",
        "title": "设置或检索对象外的线条轮廓的样式。"
    },
    {
        "attr": "outline-width",
        "title": "设置或检索对象外的线条轮廓的宽度。"
    },
    {
        "attr": "border-bottom-left-radius",
        "title": "设置或检索对象的左下角圆角边框。提供2个参数,2个参数以空格分隔,每个参数允许设置1个参数值,第1个参数表示水平半径,第2个参数表示垂直半径,如第2个参数省略,则默认等于第1个参数"
    },
    {
        "attr": "border-bottom-right-radius",
        "title": "设置或检索对象的右下角圆角边框。"
    },
    {
        "attr": "border-image",
        "title": "设置或检索对象的边框样式使用图像来填充。"
    },
    {
        "attr": "border-image-outset",
        "title": "规定边框图像超过边框的量。"
    },
    {
        "attr": "border-image-repeat",
        "title": "规定图像边框是否应该被重复(repeated)、拉伸(stretched)或铺满(rounded)。"
    },
    {
        "attr": "border-image-slice",
        "title": "规定图像边框的向内偏移。"
    },
    {
        "attr": "border-image-source",
        "title": "规定要使用的图像,代替 border-style 属性中设置的边框样式。"
    },
    {
        "attr": "border-image-width",
        "title": "规定图像边框的宽度。"
    },
    {
        "attr": "border-radius",
        "title": "设置或检索对象使用圆角边框。"
    },
    {
        "attr": "border-top-left-radius",
        "title": "定义左上角边框的形状。"
    },
    {
        "attr": "border-top-right-radius",
        "title": "定义右上角边框的形状。"
    },
    {
        "attr": "box-decoration-break",
        "title": "规定行内元素被折行"
    },
    {
        "attr": "box-shadow",
        "title": "向方框添加一个或多个阴影。"
    },
    {
        "attr": "overflow-x",
        "title": "如果内容溢出了元素内容区域,是否对内容的左/右边缘进行裁剪。"
    },
    {
        "attr": "overflow-y",
        "title": "如果内容溢出了元素内容区域,是否对内容的上/下边缘进行裁剪。"
    },
    {
        "attr": "overflow-style",
        "title": "规定溢出元素的首选滚动方法。"
    },
    {
        "attr": "rotation",
        "title": "围绕由 rotation-point 属性定义的点对元素进行旋转。"
    },
    {
        "attr": "rotation-point",
        "title": "定义距离上左边框边缘的偏移点。"
    },
    {
        "attr": "color-profile",
        "title": "允许使用源的颜色配置文件的默认以外的规范"
    },
    {
        "attr": "opacity",
        "title": "设置一个元素的透明度级别"
    },
    {
        "attr": "rendering-intent",
        "title": "允许超过默认颜色配置文件渲染意向的其他规范"
    },
    {
        "attr": "padding",
        "title": "在一个声明中设置所有填充属性"
    },
    {
        "attr": "padding-bottom",
        "title": "设置元素的底填充"
    },
    {
        "attr": "padding-left",
        "title": "设置元素的左填充"
    },
    {
        "attr": "padding-right",
        "title": "设置元素的右填充"
    },
    {
        "attr": "padding-top",
        "title": "设置元素的顶部填充"
    },
    {
        "attr": "bookmark-label",
        "title": "指定书签的标签"
    },
    {
        "attr": "bookmark-level",
        "title": "指定了书签级别"
    },
    {
        "attr": "bookmark-target",
        "title": "指定了书签链接的目标"
    },
    {
        "attr": "float-offset",
        "title": "在相反的方向推动浮动元素,他们一直具有浮动"
    },
    {
        "attr": "hyphenate-after",
        "title": "指定一个断字的单词断字字符后的最少字符数"
    },
    {
        "attr": "hyphenate-before",
        "title": "指定一个断字的单词断字字符前的最少字符数"
    },
    {
        "attr": "hyphenate-character",
        "title": "指定了当一个断字发生时,要显示的字符串"
    },
    {
        "attr": "hyphenate-lines",
        "title": "表示连续断字的行在元素的最大数目"
    },
    {
        "attr": "hyphenate-resource",
        "title": "外部资源指定一个逗号分隔的列表,可以帮助确定浏览器的断字点"
    },
    {
        "attr": "hyphens",
        "title": "设置如何分割单词以改善该段的布局"
    },
    {
        "attr": "image-resolution",
        "title": "指定了正确的图像分辨率"
    },
    {
        "attr": "marks",
        "title": "将crop and/or cross标志添加到文档"
    },
    {
        "attr": "string-set",
        "title": " "
    },
    {
        "attr": "height",
        "title": "设置元素的高度"
    },
    {
        "attr": "max-height",
        "title": "设置元素的最大高度"
    },
    {
        "attr": "max-width",
        "title": "设置元素的最大宽度"
    },
    {
        "attr": "min-height",
        "title": "设置元素的最小高度"
    },
    {
        "attr": "min-width",
        "title": "设置元素的最小宽度"
    },
    {
        "attr": "width",
        "title": "\t设置元素的宽度"
    },
    {
        "attr": "flex",
        "title": "复合属性。设置或检索弹性盒模型对象的子元素如何分配空间。"
    },
    {
        "attr": "flex-grow",
        "title": "设置或检索弹性盒的扩展比率。"
    },
    {
        "attr": "flex-shrink",
        "title": "设置或检索弹性盒的收缩比率。"
    },
    {
        "attr": "flex-basis",
        "title": "设置或检索弹性盒伸缩基准值。"
    },
    {
        "attr": "flex-flow",
        "title": "复合属性。设置或检索弹性盒模型对象的子元素排列方式。"
    },
    {
        "attr": "flex-direction",
        "title": "该属性通过定义 flex 容器的主轴方向来决定 flex 子项在 flex 容器中的位置。"
    },
    {
        "attr": "flex-wrap",
        "title": "该属性控制flex容器是单行或者多行,同时横轴的方向决定了新行堆叠的方向。"
    },
    {
        "attr": "align-content",
        "title": "在弹性容器内的各项没有占用交叉轴上所有可用的空间时对齐容器内的各项(垂直)。"
    },
    {
        "attr": "align-items",
        "title": "定义flex子项在flex容器的当前行的侧轴(纵轴)方向上的对齐方式。"
    },
    {
        "attr": "align-self",
        "title": "定义flex子项单独在侧轴(纵轴)方向上的对齐方式。\r\n"
    },
    {
        "attr": "justify-content",
        "title": "设置或检索弹性盒子元素在主轴(横轴)方向上的对齐方式。"
    },
    {
        "attr": "order",
        "title": "设置或检索弹性盒模型对象的子元素出现的順序。"
    },
    {
        "attr": "box-align",
        "title": "指定如何对齐一个框的子元素"
    },
    {
        "attr": "box-direction",
        "title": "指定在哪个方向,显示一个框的子元素"
    },
    {
        "attr": "box-flex",
        "title": "指定一个框的子元素是否是灵活的或固定的大小"
    },
    {
        "attr": "box-flex-group",
        "title": "指派灵活的元素到Flex组"
    },
    {
        "attr": "box-lines",
        "title": "每当它在父框的空间运行时,是否指定将再上一个新的行列"
    },
    {
        "attr": "box-ordinal-group",
        "title": "指定一个框的子元素的显示顺序"
    },
    {
        "attr": "box-orient",
        "title": "指定一个框的子元素是否在水平或垂直方向应铺设"
    },
    {
        "attr": "box-pack",
        "title": "指定横向盒在垂直框的水平位置和垂直位置"
    },
    {
        "attr": "font",
        "title": "在一个声明中设置所有字体属性"
    },
    {
        "attr": "font-family",
        "title": "规定文本的字体系列"
    },
    {
        "attr": "font-size",
        "title": "规定文本的字体尺寸"
    },
    {
        "attr": "font-style",
        "title": "规定文本的字体样式"
    },
    {
        "attr": "font-variant",
        "title": "规定文本的字体样式"
    },
    {
        "attr": "font-weight",
        "title": "规定字体的粗细"
    },
    {
        "attr": "@font-face",
        "title": "一个规则,允许网站下载并使用其他超过\"Web- safe\"字体的字体"
    },
    {
        "attr": "font-size-adjust",
        "title": "为元素规定 aspect 值"
    },
    {
        "attr": "font-stretch",
        "title": "收缩或拉伸当前的字体系列"
    },
    {
        "attr": "content",
        "title": "与 :before 以及 :after 伪元素配合使用,来插入生成内容"
    },
    {
        "attr": "counter-increment",
        "title": "递增或递减一个或多个计数器"
    },
    {
        "attr": "counter-reset",
        "title": "创建或重置一个或多个计数器"
    },
    {
        "attr": "quotes",
        "title": "设置嵌套引用的引号类型"
    },
    {
        "attr": "crop",
        "title": "允许replaced元素只是作为一个对象代替整个对象的矩形区域"
    },
    {
        "attr": "move-to",
        "title": "从流中删除元素,然后在文档中后面的点上重新插入。"
    },
    {
        "attr": "page-policy",
        "title": "判定基于页面的给定元素的适用于计数器的字符串值"
    },
    {
        "attr": "grid-column",
        "title": "设置网格元素列的开始和结束位置"
    },
    {
        "attr": "grid-row",
        "title": "设置网格元素行的开始和结束位置。"
    },
    {
        "attr": "target",
        "title": "简写属性设置target-name, target-new,和target-position属性"
    },
    {
        "attr": "target-name",
        "title": "指定在何处打开链接(目标位置)"
    },
    {
        "attr": "target-new",
        "title": "指定是否有新的目标链接打开一个新窗口或在现有窗口打开新标签"
    },
    {
        "attr": "target-position",
        "title": "指定应该放置新的目标链接的位置"
    },
    {
        "attr": "alignment-adjust",
        "title": "允许更精确的元素的对齐方式"
    },
    {
        "attr": "alignment-baseline",
        "title": "其父级指定的内联级别的元素如何对齐"
    },
    {
        "attr": "baseline-shift",
        "title": "允许重新定位相对于dominant-baseline的dominant-baseline"
    },
    {
        "attr": "dominant-baseline",
        "title": "指定scaled-baseline-table"
    },
    {
        "attr": "drop-initial-after-adjust",
        "title": "设置下拉的主要连接点的初始对齐点"
    },
    {
        "attr": "drop-initial-after-align",
        "title": "校准行内的初始行的设置就是具有首字母的框使用初级连接点"
    },
    {
        "attr": "drop-initial-before-adjust",
        "title": "设置下拉的辅助连接点的初始对齐点"
    },
    {
        "attr": "drop-initial-before-align",
        "title": "校准行内的初始行的设置就是具有首字母的框使用辅助连接点"
    },
    {
        "attr": "drop-initial-size",
        "title": "控制局部的首字母下沉"
    },
    {
        "attr": "drop-initial-value",
        "title": "激活一个下拉式的初步效果"
    },
    {
        "attr": "inline-box-align",
        "title": "设置一个多行的内联块内的行具有前一个和后一个内联元素的对齐"
    },
    {
        "attr": "line-stacking",
        "title": "一个速记属性设置line-stacking-strategy, line-stacking-ruby,和line-stacking-shift属性"
    },
    {
        "attr": "line-stacking-ruby",
        "title": "设置包含Ruby注释元素的行对于块元素的堆叠方法"
    },
    {
        "attr": "line-stacking-shift",
        "title": "设置base-shift行中块元素包含元素的堆叠方法"
    },
    {
        "attr": "line-stacking-strategy",
        "title": "设置内部包含块元素的堆叠线框的堆叠方法"
    },
    {
        "attr": "text-height",
        "title": "行内框的文本内容区域设置block-progression维数"
    },
    {
        "attr": "list-style",
        "title": "在一个声明中设置所有的列表属性"
    },
    {
        "attr": "list-style-image",
        "title": "将图象设置为列表项标记"
    },
    {
        "attr": "list-style-position",
        "title": "设置列表项标记的放置位置"
    },
    {
        "attr": "list-style-type",
        "title": "设置列表项标记的类型"
    },
    {
        "attr": "margin",
        "title": "在一个声明中设置所有外边距属性"
    },
    {
        "attr": "margin-bottom",
        "title": "设置元素的下外边距"
    },
    {
        "attr": "margin-left",
        "title": "设置元素的左外边距"
    },
    {
        "attr": "margin-right",
        "title": "设置元素的右外边距"
    },
    {
        "attr": "margin-top",
        "title": "设置元素的上外边距"
    },
    {
        "attr": "marquee-direction",
        "title": "设置内容移动的方向"
    },
    {
        "attr": "marquee-play-count",
        "title": "设置内容移动多少次"
    },
    {
        "attr": "marquee-speed",
        "title": "设置内容滚动的速度有多快"
    },
    {
        "attr": "marquee-style",
        "title": "设置内容移动的样式"
    },
    {
        "attr": "column-count",
        "title": "指定元素应该分为的列数"
    },
    {
        "attr": "column-fill",
        "title": "指定如何填充列"
    },
    {
        "attr": "column-gap",
        "title": "指定列之间的差距"
    },
    {
        "attr": "column-rule",
        "title": "对于设置所有column-rule-*属性的简写属性"
    },
    {
        "attr": "column-rule-color",
        "title": "指定列之间的颜色规则"
    },
    {
        "attr": "column-rule-style",
        "title": "指定列之间的样式规则"
    },
    {
        "attr": "column-rule-width",
        "title": "指定列之间的宽度规则"
    },
    {
        "attr": "column-span",
        "title": "指定元素应该跨越多少列"
    },
    {
        "attr": "column-width",
        "title": "指定列的宽度"
    },
    {
        "attr": "columns",
        "title": "缩写属性设置列宽和列数"
    },
    {
        "attr": "fit",
        "title": "如果其宽度和高度属性都不是auto给出一个提示,如何大规模替换元素"
    },
    {
        "attr": "fit-position",
        "title": "判定方框内对象的对齐方式"
    },
    {
        "attr": "image-orientation",
        "title": "指定用户代理适用于图像中的向右或顺时针方向的旋转"
    },
    {
        "attr": "page",
        "title": "指定一个元素应显示的页面的特定类型"
    },
    {
        "attr": "size",
        "title": "指定含有BOX的页面内容的大小和方位"
    },
    {
        "attr": "bottom",
        "title": "设置定位元素下外边距边界与其包含块下边界之间的偏移"
    },
    {
        "attr": "clear",
        "title": "规定元素的哪一侧不允许其他浮动元素"
    },
    {
        "attr": "clip",
        "title": "剪裁绝对定位元素"
    },
    {
        "attr": "cursor",
        "title": "规定要显示的光标的类型(形状)"
    },
    {
        "attr": "display",
        "title": "规定元素应该生成的框的类型"
    },
    {
        "attr": "float",
        "title": "规定框是否应该浮动"
    },
    {
        "attr": "left",
        "title": "设置定位元素左外边距边界与其包含块左边界之间的偏移"
    },
    {
        "attr": "overflow\n",
        "title": "规定当内容溢出元素框时发生的事情"
    },
    {
        "attr": "position",
        "title": "规定元素的定位类型"
    },
    {
        "attr": "right",
        "title": "设置定位元素右外边距边界与其包含块右边界之间的偏移"
    },
    {
        "attr": "top",
        "title": "设置定位元素的上外边距边界与其包含块上边界之间的偏移"
    },
    {
        "attr": "visibility",
        "title": "规定元素是否可见"
    },
    {
        "attr": "z-index",
        "title": "设置元素的堆叠顺序"
    },
    {
        "attr": "orphans",
        "title": "设置当元素内部发生分页时必须在页面底部保留的最少行数"
    },
    {
        "attr": "page-break-after",
        "title": "设置元素后的分页行为"
    },
    {
        "attr": "page-break-before",
        "title": "设置元素前的分页行为"
    },
    {
        "attr": "page-break-inside",
        "title": "设置元素内部的分页行为"
    },
    {
        "attr": "widows",
        "title": "设置当元素内部发生分页时必须在页面顶部保留的最少行数"
    },
    {
        "attr": "ruby-align",
        "title": "控制Ruby文本和Ruby基础内容相对彼此的文本对齐方式"
    },
    {
        "attr": "ruby-overhang",
        "title": "当Ruby文本超过Ruby的基础宽,确定ruby文本是否允许局部悬置任意相邻的文本,除了自己的基础"
    },
    {
        "attr": "ruby-position",
        "title": "它的base控制Ruby文本的位置"
    },
    {
        "attr": "ruby-span",
        "title": "控制annotation 元素的跨越行为"
    },
    {
        "attr": "mark",
        "title": "缩写属性设置mark-before和mark-after属性"
    },
    {
        "attr": "mark-after",
        "title": "允许命名的标记连接到音频流"
    },
    {
        "attr": "mark-before",
        "title": "允许命名的标记连接到音频流"
    },
    {
        "attr": "phonemes",
        "title": "指定包含文本的相应元素中的一个音标发音"
    },
    {
        "attr": "rest",
        "title": "一个缩写属性设置rest-before和rest-after属性"
    },
    {
        "attr": "rest-after",
        "title": "一个元素的内容讲完之后,指定要休息一下或遵守韵律边界"
    },
    {
        "attr": "rest-before",
        "title": "一个元素的内容讲完之前,指定要休息一下或遵守韵律边界"
    },
    {
        "attr": "voice-balance",
        "title": "指定了左,右声道之间的平衡"
    },
    {
        "attr": "voice-duration",
        "title": "指定应采取呈现所选元素的内容的长度"
    },
    {
        "attr": "voice-pitch",
        "title": "指定平均说话的声音的音调(频率)"
    },
    {
        "attr": "voice-pitch-range",
        "title": "指定平均间距的变化"
    },
    {
        "attr": "voice-rate",
        "title": "控制语速"
    },
    {
        "attr": "voice-stress",
        "title": "指示着重力度"
    },
    {
        "attr": "voice-volume",
        "title": "语音合成是指波形输出幅度"
    },
    {
        "attr": "border-collapse",
        "title": "规定是否合并表格边框"
    },
    {
        "attr": "border-spacing",
        "title": "规定相邻单元格边框之间的距离"
    },
    {
        "attr": "caption-side",
        "title": "规定表格标题的位置"
    },
    {
        "attr": "empty-cells",
        "title": "规定是否显示表格中的空单元格上的边框和背景"
    },
    {
        "attr": "table-layout",
        "title": "设置用于表格的布局算法"
    },
    {
        "attr": "color",
        "title": "设置文本的颜色"
    },
    {
        "attr": "direction",
        "title": "规定文本的方向 / 书写方向"
    },
    {
        "attr": "letter-spacing",
        "title": "设置字符间距"
    },
    {
        "attr": "line-height",
        "title": "设置行高"
    },
    {
        "attr": "text-align",
        "title": "规定文本的水平对齐方式"
    },
    {
        "attr": "text-decoration",
        "title": "规定添加到文本的装饰效果"
    },
    {
        "attr": "text-indent",
        "title": "规定文本块首行的缩进"
    },
    {
        "attr": "text-transform",
        "title": "控制文本的大小写"
    },
    {
        "attr": "unicode-bidi",
        "title": " "
    },
    {
        "attr": "vertical-align",
        "title": "设置元素的垂直对齐方式"
    },
    {
        "attr": "white-space",
        "title": "设置怎样给一元素控件留白"
    },
    {
        "attr": "word-spacing",
        "title": "设置单词间距"
    },
    {
        "attr": "text-emphasis",
        "title": "向元素的文本应用重点标记以及重点标记的前景色。"
    },
    {
        "attr": "hanging-punctuation",
        "title": "指定一个标点符号是否可能超出行框"
    },
    {
        "attr": "punctuation-trim",
        "title": "指定一个标点符号是否要去掉"
    },
    {
        "attr": "text-align-last",
        "title": "当 text-align 设置为 justify 时,最后一行的对齐方式。"
    },
    {
        "attr": "text-justify",
        "title": "当 text-align 设置为 justify 时指定分散对齐的方式。"
    },
    {
        "attr": "text-outline",
        "title": "设置文字的轮廓。"
    },
    {
        "attr": "text-overflow",
        "title": "指定当文本溢出包含的元素,应该发生什么"
    },
    {
        "attr": "text-shadow",
        "title": "为文本添加阴影"
    },
    {
        "attr": "text-wrap",
        "title": "指定文本换行规则"
    },
    {
        "attr": "word-break",
        "title": "指定非CJK文字的断行规则"
    },
    {
        "attr": "word-wrap",
        "title": "设置浏览器是否对过长的单词进行换行。"
    },
    {
        "attr": "transform",
        "title": "适用于2D或3D转换的元素"
    },
    {
        "attr": "transform-origin",
        "title": "允许您更改转化元素位置"
    },
    {
        "attr": "transform-style",
        "title": "3D空间中的指定如何嵌套元素"
    },
    {
        "attr": "perspective",
        "title": "指定3D元素是如何查看透视图"
    },
    {
        "attr": "perspective-origin",
        "title": "指定3D元素底部位置"
    },
    {
        "attr": "backface-visibility",
        "title": "定义一个元素是否应该是可见的,不对着屏幕时"
    },
    {
        "attr": "transition",
        "title": "此属性是 transition-property、transition-duration、transition-timing-function、transition-delay 的简写形式。"
    },
    {
        "attr": "transition-property",
        "title": "设置用来进行过渡的 CSS 属性。"
    },
    {
        "attr": "transition-duration",
        "title": "设置过渡进行的时间长度。"
    },
    {
        "attr": "transition-timing-function",
        "title": "设置过渡进行的时序函数。"
    },
    {
        "attr": "transition-delay",
        "title": "指定过渡开始的时间。"
    },
    {
        "attr": "appearance",
        "title": "定义元素的外观样式"
    },
    {
        "attr": "box-sizing",
        "title": "允许您为了适应区域以某种方式定义某些元素"
    },
    {
        "attr": "icon",
        "title": "为元素指定图标"
    },
    {
        "attr": "nav-down",
        "title": "指定用户按向下键时向下导航的位置"
    },
    {
        "attr": "nav-index",
        "title": "指定导航(tab)顺序。"
    },
    {
        "attr": "nav-left",
        "title": "指定用户按向左键时向左导航的位置"
    },
    {
        "attr": "nav-right",
        "title": "指定用户按向右键时向右导航的位置"
    },
    {
        "attr": "nav-up",
        "title": "指定用户按向上键时向上导航的位置a"
    },
    {
        "attr": "outline-offset",
        "title": "设置轮廓框架在 border 边缘外的偏移"
    },
    {
        "attr": "resize",
        "title": "定义元素是否可以改变大小"
    }
]
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值