css@media⾃适应字体⼤⼩--简单试试
外媒发布LOL全球战队排名灵感来源
简单分析
利⽤@media基于设备宽度, 对字体应⽤不同的css
壹周立波秀 国家大事所以,相应的,css代码直接成倍增长。
// css-less字体动态适配 -- ⼿机
工伤险和意外险哪个赔的多@media all and (max-width: 768px){
.text-for-title{
font-size: 1vw!important;
茶花粉
网上查询个人信用记录border-bottom: 2px solid #6f2d91 !important;
}
装修一般要多少钱}
// 平板?
@media all and (min-width: 769px) and (max-width: 1349px){
.text-for-title{
font-size: 1vw!important;
padding: 0.2vw 0 !important;
border-bottom: 3px solid #6f2d91 !important;
}
}
/
/ pc?
@media all and (min-width: 1350px){
.text-for-title{
font-size: 1.5em!important;
}
}
缺点
1. 会造成全局样式污染, vue的scoped css中使⽤@media中样式,会影响到全局页⾯中同名的css样式。
<style scoped lang='less'>
</style>
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论