- 凡是有-的style属性名都要变成驼峰式,比如font-size要变成
fontSize - 除了绑定值,其他的属性名的值要用引号括起来,比如
backgroundColor:'#00a2ff'而不是 backgroundColor:#00a2ff
对象
-
html :style="{ color: activeColor, fontSize: fontSize + 'px' }" -
html :style="{display:(activeName=='first'?'flex':'none')}"
数组
html :style="[baseStyles, overridingStyles]"
html :style="[{display:(activeName=='first'?'flex':'none')},{fontSize:'20px'}]"
三目运算符
html :style="{color:(index==0?conFontColor:'#ddd')}"
html :style="[{color:(index==0?conFontColor:'#ddd')},{fontSize:'22px'}]"
多重值
此时,浏览器会根据运行支持情况进行选择
html :style="{ display: ['-webkit-box', '-ms-flexbox', 'flex'] }"

本文探讨了在CSS属性名中如何将短横线式(如font-size)转换为驼峰式(fontSize),以及如何在HTML的style属性中正确使用引号括起属性值。同时,展示了在对象、数组、三目运算符和多重值场景下CSS样式的动态设置,包括条件逻辑的运用,以实现更灵活的样式控制。
7442

被折叠的 条评论
为什么被折叠?



