I have created custom styles for an object as shown below:
form#sign_in{
position:relative;
margin:85px auto 50px auto;
width:455px;
background:#fff;
border:#dfdfdf 1px solid;
border-radius:5px;
-moz-border-radius:5px;
-webkit-border-radius:5px;
}
Now, I would like to apply all the styles from sign_in
to another component, except for the width property.
form#another_sign_in{
width: 520px;
}
Is there a way to inherit the styles from form#sign_in
without including the width property?