@function px2rem ($px) {
$rem: 75px;
@return ($px / $rem) + rem;
}
.header {
height: px2rem(80px);
width: px2rem(750px);
background-color: red;
.header-item {
float: left;
color: #ffcdce;
line-height: px2rem(80px);
font-size: px2rem(32px);
margin: 0 px2rem(24px);
&-active {
color: #fff;
font-size: px2rem(34px);
}
}
}
是的,你说的没错