All Questions
Tagged with cross-browser css-content
2 questions
10
votes
2
answers
47k
views
css form checkbox styling with checked and after tags [duplicate]
I am trying to design a form without using JavaScript or JQuery. It includes a series of checkboxes. The idea is to display a certain gif after the checkbox if it is unchecked. Otherwise, display ...
2
votes
4
answers
9k
views
Can CSS Content Property work in IE7?
I came across with CSS content property, which it is able to add text into element.
for example:
.class:after{
content: "testing";
}
Unfortunately this CSS property only working in IE8 only with ...