本文介绍了如何一次将样式应用到多个类?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我想要两个不同名称的类在CSS中具有相同的属性。我不想重复代码。 .abc {margin- left:20px;} .xyz {margin-left:20px;} < a class =abc> Lorem< / a>< a class =xyz> Ipsum< / a> > 由于这两个类都做同样的事情,我应该能够将它合并成一个。 $ .abc,.xyz {margin-left: I want two classes with different names to have the same property in CSS. I don't want to repeat the code..abc { margin-left:20px;}.xyz { margin-left:20px;}<a class="abc">Lorem</a><a class="xyz">Ipsum</a>Since both classes are doing the same thing, I should be able to merge it into one. How can I do that? 解决方案 .abc, .xyz { margin-left: 20px; }is what you are looking for. 这篇关于如何一次将样式应用到多个类?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 08-14 01:28