English 中文(简体)
• 申报全球生态系统服务公司财产? 这是可能的吗?
原标题:Declare a global CSS property ? Is this possible?
  • 时间:2012-05-04 05:44:29
  •  标签:
  • css

我有一个非常棘手的问题,如果可能的话,我就知道我们是否在 c中。

我说三类不同,如下文所示:你可以看到我拥有所有这几类共同财产,因此,我要在其他地方宣布这一肤色,并在此提及,这样,如果我下一次想要改变肤色,我就能够简单地改变,而不是改变所有5类。

我知道,你可以使用体{},也可以用一个包裹,但这会影响整个场址的颜色? 是否有办法这样做?

Is this even possible ?

.abc {
color:red;
}

.abc2 {
color:red;
}

.abc3 {
color:red;
}

.abc4 {
color:red;
}

.abc5 {
color:red;
}
最佳回答

坏消息:你可以在国家安全局这样做。

好消息:你可以用像LESS这样的美加澳元语言书写,然后把LESS文件处理到单纯的CSS。 这称为“恶毒”。

在LESS:

@errorColor: red;

.error-color {
  color: @errorColor;
}

#error-1 {
  .error-color;
}

.all-errors {
  .error-color;
}

更多信息:

问题回答

如果你想要在某个时候宣布所有这些,你可以使用:

.abc, .abc2, .abc3, .abc4, .abc5 {
  color:red;
}

或者,你可以宣布增加一个班子;增加所有班子,......bc2.......和amp;使其有色:红。

不能与安保部合作,但这仍然是一种非常受欢迎的事,它使用诸如LESS、SASS、SCSS或Stylus等特别安全局的前处理器。

预处理员将允许你确定一个变量(约合美元=#F00)。 该文件将用你可变的价值取代贵会社文件中的变数,使你能够撰写南盟和南安会模块。

这一功能称为“CSS变量”,是future spec的一部分,但尚未在任何浏览器上实施。

现在,在纯粹的生态系统服务公司中这样做的最佳方法是宣布为所期望的“全球”增加一个类别,然后将这一类别列入所有相关项目。

.abc_global { color: red; }
.abc1 { /* additional styling */ }
.abc2 { /* additional styling */ }

<div class="abc1 abc_global"></div>
<div class="abc2 abc_global"></div>

http://lesscss.org/“rel=“nofollow”

你们能够一度界定红色:

.myRedColor {

color:red;

}

现在,你可以把这一红.指在任何特别安全局的风格上。 哪怕是反恐执行局的风格! 它是一种邪恶的工具。

.abc1 {

 .myRedColor;

}
.abc2 {

 .myRedColor;

}
.abc3 {

 .myRedColor;

}
.abc4 {

 .myRedColor;

}

  .abc {

    .itsEasyAsOneTwoThree{
       .myRedColor;

    }

   }

现在,我们在“abc”类内适当穿插的“骨干”班级都将被分配为红色风格。 更不要忘记第867530号长颜色编码: 冷却如何?

您还可以使用原始代码<>指令-preset-env和支持习惯特性/变量的邮政管理处,然后使用<代码>:root 选择或添加全球化学品变数。

:root {
  --color-gray: #333333;
  --color-white: #ffffff;
  --color-black: #000000;
}




相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

jquery ui dialog opens only once

I have a button that opens a dialog when clicked. The dialog displays a div that was hidden After I close the dialog by clicking the X icon, the dialog can t be opened again.

Drop down background url in Safari Issue

selectBox.selectCSS { background: url(/Images/replacementSelectBackground.png) top left no-repeat height:auto; } I have an issue in Safari only where the image is not rendering on top ...

CSS specific for Safari

How do you target specifically safari in css with styles?

Aligning textarea in a form

Ive used the following css code to align my form elements: form { position:relative; } form input { position:absolute; left:11em; } However, the textarea element is not aligned correctly with the ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

CSS problem with page footer

I have defined my page footer in the css file as: #footer { position: absolute; height: 50px; text-align: center; background: #66CCCC; bottom: 0px; left: 0px; width: 100%; height: ...

热门标签