/* 错误 */ #id {} .a .b .c {} .a > .b {} /* 正确 */ .class {}
border 不支持简写
/* 错误 */ .class { border: 1px red solid; } /* 正确 */ .class { border-width: 1px; border-style: solid; border-color: red; }
background 不支持简写
/* 错误 */ .class { background: red; } /* 正确 */ .class { background-color: red; }
/* 错误 */ /* 控制台警告: WARNING: `border` is not a standard property name (may not be supported) WARNING: `-webkit-transform` is not a standard property name (may not be supported) */ .class { border: 1px red solid; -webkit-transform: scaleY(.5); } /* 正确 */ .class { border-width: 1px; border-style: solid; border-color: red; /* #ifndef APP-PLUS-NVUE */ -webkit-transform: scaleY(.5); /* #endif*/ }
4.nvue 页面控制显隐只可以使用v-if
不可以使用v-show
5.h5正常app异常body的元素选择器请改为page,同样,div和ul和li等改为view、span和font改为text、a改为navigator、img改为image...
原文:https://www.cnblogs.com/cyhsmile/p/13925477.html