在类之间共享属性

时间:2015-05-25 00:09:31

标签: html css web

我有两个共享属性的类,例如:

.divone{ width:10px; height:20px; float:right; cursor:pointer; }
.divtwo{ width:11px; height:10px; float:right; cursor:pointer; }

如您所见,两个类共享属性:“float”和“cursor”。如何在同一个类中声明这两个属性,然后将它应用于这两个类?有点像这样:

.sharedproperties{ float:right; cursor:pointer; }

.divone{ width:10px; height:20px; (+ .sharedproperties)}
.divtwo{ width:11px; height:10px; (+ .sharedproperties)}

谢谢!

2 个答案:

答案 0 :(得分:1)

你只需要在你的html文件中调用它们:

NSLayoutPriorityWindowSizeStayPut

<div class="sharedproperties divone"><!-- Some content here --></div>

你的CSS文件是:

<div class="sharedproperties divtwo"><!-- Some content here --></div>

答案 1 :(得分:1)

如果您不想在标记中添加额外的类名,可以在CSS中使用逗号将规则应用于多个选择器:

.divone, .divtwo { float:right; cursor:pointer; }
.divone{ width:10px; height:20px; }
.divtwo{ width:11px; height:10px; }