有没有办法将字体样式或任何其他样式应用于CSS中的元素?
例如
您定义了某种字体样式
.impact {
font-family: "Impact";
letter-spacing: 16px;
line-height: 72%;
}
现在将此样式应用于css中的元素:
#certainElement {
font-family: Impact (the one we defined)
width: 400px;
}