gpt4 book ai didi

css - 将 CSS 应用于属性和媒体查询

转载 作者:太空宇宙 更新时间:2023-11-04 13:21:03 24 4
gpt4 key购买 nike

您好,我有重复的 css 代码,我想将其应用于媒体查询以及 html 属性。

例如

@media only screen and (max-width 729px)
font-size: 1.5em
font-weight: normal
.mobile-view
font-size: 1.5em
font-weight: normal

我正在使用 SASS 并想知道是否有办法将它们捆绑在一起以保持 DRY(不要重复自己)

最佳答案

你可以使用混合:

@mixin mobileFont() {
font-size: 1.5em;
font-weight: normal;
}
@media only screen and (max-width 729px){
@include mobileFont();
}
.mobile-view{
@include mobileFont();
}

但是它并没有呈现为 DRY...

关于css - 将 CSS 应用于属性和媒体查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24072730/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com