<cover-view class="title" >我是标题文字</cover-view>
.title {
font-size: 52rpx;
font-weight: bold;
}
产品分类: uniapp/App
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: win10
HBuilderX类型: 正式
HBuilderX版本号: 3.8.12
手机系统: Android
手机系统版本号: Android 13
手机厂商: 小米
手机机型: 10s
页面类型: vue
vue版本: vue2
打包方式: 云端
项目创建方式: HBuilderX
<cover-view class="title" >我是标题文字</cover-view>
.title {
font-size: 52rpx;
font-weight: bold;
}
无
安卓app端、希望cover-view支持font-weight: bold或者font-weight: 700
font-weight: bold或者font-weight: 700不生效
安卓app端、cover-view 给字体设置font-weight: bold或者font-weight: 700不生效。求解决方案
喜欢技术的前端 - QQ---445849201
可以的,你试试
<template>
<view class="content">
cover-view
<cover-view class="coverview">
<text class="text">测试cover-viewcover-viewcover-view</text>
</cover-view>
</view>
</template>
<script>
export default {
data() {
return {
};
},
methods: {
}
};
</script>
<style lang="scss">
.content{
background-color: #ccc;
height: 100vh;
}
.coverview{
background-color: #ccc;
}
.text{
// font-weight: 700;
font-weight: bold;
color: red;
}
</style>
旧时光 (作者)
授信感谢你的回复。你这个是在浏览器中支持吧,我这边是安卓APP端哦,不支持这样,并且app端cover-view里面不能放其他标签
2023-08-07 09:29