算我求你了,转载请注明出处
- 后续我将会整理一个专栏,专门是css相关的笔记,因为vue3的到来,支持script与style标签进行交互....阿巴阿巴,因为目前我正在整理前端环境搭建与准备-指引,暂时没空弄css专栏。
- css专栏到时候也会比较less和sass、css一些常用的操作与比较....阿巴阿巴。
- 此外,我之前还写了vue动态添加class的几种方式,到时候也一并更新
注意
- 凡是有
-
的style属性名都要变成驼峰式,比如font-size要变成fontSize
- 除了绑定值,其他的属性名的值要用引号括起来,比如
backgroundColor:'#00a2ff'
而不是 backgroundColor:#00a2ff
【对象】
-
html :style="{ color: activeColor, fontSize: fontSize + 'px' }"
-
html :style="{color:(index==0?conFontColor:'#000')}"
【数组】
html :style="[baseStyles, overridingStyles]"
html :style="[{color:(index==0?conFontColor:'#000')},{fontSize:'20px'}]"
【三目运算符】
html :style="{color:(index==0?conFontColor:'#000')}"
html :style="[{color:(index==0?conFontColor:'#000')},{fontSize:'20px'}]"
【多重值】
此时,浏览器会根据运行支持情况进行选择
html :style="{ display: ['-webkit-box', '-ms-flexbox', 'flex'] }"
【绑定data对象】
html :style="styleObject"
data() {
return{
styleObject: {
color: 'red',
fontSize: '13px'
}
}
}