我有A.css并在B.css中导入, 在A.css中有几个类rotate45,rotate90,rotate135和rotate180 我想在B中使用它们
B.css
{
.roate{
// Get properties of rotate180
}
@media(min-width:570)
{
.roate{
// Get properties of rotate45
}
}
@media(min-width:750)
{
.roate{
// Get properties of rotate90
}
}
@media(min-width:950)
{
.roate{
// Get properties of rotate135
}
}
}
任何人都可以提供帮助。
答案 0 :(得分:1)
将A.css
导入B.css
。
在文件开头使用@import url();
。
<强> B.css 强>
@import url('path/to/A.css');
// code in B.css
...