How can one class be inherited from another in a CSS file?
input.btn { border:1px solid #23458c; background:url('gfx/layout.btn_bg.png'); color:#f0f5fa; font-weight:bold; margin-right:6px; padding:1px 6px 2px 6px; cursor:pointer; } input.btn_light { border:1px solid #717b8f; background:url('gfx/layout.btn_light_bg.png'); }
here I want input.btn_light
inherit from input.btn
.. how can this be done in the CSS file?
@vadiklk
input.btn { border:1px solid
clarkk
source share