Example from Wikipedia css:
#content a[href^="https://"], .link-https {
background:url("images/external-link-ltr-icon.png?2") no-repeat scroll right center transparent;
padding:0 13px 0 0;
}
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
That’s actually not part of CSS itself, but rather, part of the querystring to the image.
It’s the same as:
The site will take that querystring parameter and value as part of the request. It could make a decision on which file to serve, based on the value supplied.
Likely it’s a version number. It helps get around the situations where your browser may have cached the image.