Possible duplicate:
What does an asterisk in a CSS property name do?
I'm trying to figure out what an asterisk (*) means next to the "vertical-align: middle" property in this CSS file:
button, input, select, textarea {
font-family: sans-serif;
font-size: 100%;
margin: 0;
vertical-align: baseline;
*vertical-align: middle;
}
Also, why is vertical-align repeated twice with an asterisk other than the first?
I know what this means next to the class name, but I have never seen it next to a property.
source
share