Similar Question:
CSS reset - purpose of asterik within a style
While going through the CSS styles for HTML5BoilerPlate, I stumbled upon an unfamiliar code snippet:
button, input, select, textarea {
font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle;
}
I am particularly confused about the second ****vertical-align*** part. Why is it included twice and prefixed with an asterisk?
If anyone has insights into this technique or its purpose, I would greatly appreciate your input.
Thank you!
-Adrian