.inputBoxWar {
width: 100%;
max-width: 100%;
margin-bottom: 30rpx;
&:nth-last-child(1) {
margin-bottom: 142rpx;
}
&:nth-child(2) {
margin-bottom: 142rpx;
}
}

- 发布:2022-01-19 22:59
- 更新:2022-01-24 15:31
- 阅读:362
产品分类: uniapp/H5
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: windows专业版
HBuilderX类型: 正式
HBuilderX版本号: 3.3.5
浏览器平台: Chrome
浏览器版本: 97.0.4692.71
项目创建方式: HBuilderX
示例代码:
操作步骤:
预期结果:
编译了 nth-child()
编译nth-last-child()
编译了 nth-child()
编译nth-last-child()
实际结果:
编译了 nth-child()但是nth-last-child()没有编译
编译了 nth-child()但是nth-last-child()没有编译
bug描述:
在vue3 的<style scoped lang="scss">里
.inputBoxWar {
width: 100%;
max-width: 100%;
margin-bottom: 30rpx;
&:nth-last-child(1) {
margin-bottom: 142rpx;
}
&:nth-child(2) {
margin-bottom: 142rpx;
}
}
编译了 nth-child()但是nth-last-child()没有编译