css 问题 - 主题按钮
我制作了一个小按钮小部件,其样式带有一些 gfx。 我的该按钮的 css 类如下:
div.tButton
{
height:20px;
cursor:pointer;
background-repeat:no-repeat;
background-image:url(/button/button.png);
}
...
该 .css 还具有用于悬停、单击和禁用按钮状态的类。
我想要做的是创建不同的按钮主题(颜色,大小..),它使用一个通用的 .css 文件,只添加高度和背景图像 - 所以我不必为每个主题创建一个完整的 css 文件。
这怎么办?
例如。对于 html 标记,我尝试过类似的方法
<div class=tButton btn40>mybutton</div>
,其中 btn40 应该是具有不同高度+背景图像的 .css 类,但不起作用。
知道这是否可能吗?
谢谢
i've made a little button widget which is styled with some gfx.
my css class for that button is like:
div.tButton
{
height:20px;
cursor:pointer;
background-repeat:no-repeat;
background-image:url(/button/button.png);
}
...
that .css also has classes for hover, click and disabled button-state.
what i wanna do is create different button themes (color,size ..) which use one universal .css file and just additions for height and background-image - so i don't have to create a whole css file for each theme.
how could this be done?
eg. for the html markup i've tried something like
<div class=tButton btn40>mybutton</div>
where btn40 whould be a .css class with different height + background-image, but doesn't work.
any idea if this is possible?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
基本上,样式属性末尾的
!important
将强制此类的样式属性覆盖所有其他属性。这将允许您将以下内容定义为默认值:并将允许您定义如下所示的自定义项
以下是设置样式的方式。
Basically the
!important
at the end of the style attribute will force this class's style attribute to override all others. This will allow you to define the following as the default:and will allow you to define customizations like this
Here is how you would set up the style.