网站开发报价表,wordpress证书,广州增城做网站,制作wordpress博客app首先要知道#xff0c;在这个:style里面#xff0c;虽然可以用 {属性: 属性值 , 属性: 属性值} 这种方方式来写很多属性#xff0c;但也仅限于width这种普通属性#xff0c;像background-color这种带-的特殊标签是不支持直接写的#xff1b;
div classbox在这个:style里面虽然可以用 {属性: 属性值 , 属性: 属性值} 这种方方式来写很多属性但也仅限于width这种普通属性像background-color这种带-的特殊标签是不支持直接写的
div classbox :style{ width:400px,height: 400px, background-color:green } h1计划安排h1 /div
而如果非要写的话有两种方法
1、可以将属性名用单引号 引起来如
div classbox :style{ width:400px,height: 400px, background-color :green } h1计划安排h1 /div
2、是直接用属性名的驼峰命名
div classbox :style{ width:400px,height: 400px, backgroundColor:green } h1计划安排h1 /div