I am trying to use :after CSS pseudo element on INPUT field, but it does not work. If I use it with SPAN, it works OK.

<style type="text/css">
.mystyle:after {content:url(smiley.gif);}
.mystyle {color:red;}
</style>

This works (puts the smily after "buu!" and berfore "some more")

<span class="mystyle">buuu!</span>a some more

This does not work - it only color someValue in red, but there is no smiley.

<input class="mystyle" type="text" value="someValue">

What am I doing wrong? should I use another pseudo selector. Note: I can not add SPAN sround my INPUT; because it is being generated by a third party control.

Matraj

link|improve this question

43% accept rate
feedback

2 Answers

up vote 15 down vote accepted

:after and :before are not supported in internet explorer 7 and under on any elements.

It's also not meant to be used on replaced elements such as form elements (inputs) and image elements.

In other words it's impossible with pure CSS.

However if using jquery you can use

$(".mystyle").after("add your smiley here");

API docs on .after

To append your content with javascript. This will work across all browsers.

link|improve this answer
Alex, I am using IE8 and latest FF, so IE7 is not an issue. I was seraching for any documentation about limiatation of :after, but was unable to find it. w3.org/TR/CSS2/generate.html states, that it is inserted after the current node in document tree so it should work in both cases. – matra Apr 7 '10 at 14:08
1  
Unless you are building the page just for your own use a large percentage of the internet use those browsers still. The w3c spec says this yes; but as you well know browsers implement their own interpretation of the spec. Using :after on an input will only work in Opera 9+, but is not implemented in IE, FF, safari or chrome because of the way they internally construct the DOM - again it can't be done with pure CSS. – Alex Apr 7 '10 at 15:14
Thanks for the answer (BTW: I am building intranet application which wil be used by few internal users) – matra Apr 7 '10 at 18:35
I'm not sure if this was the case in April, but Webkit does support :after in general, though it doesn't support either :before or :after on inputs. – coreyward Dec 8 '10 at 17:09
10  
As far as I understand W3C :after and :before pseudo elements, they can only be put on container elements. Why? Because they are appended inside that particular element. input is not a container. button for instance is hence you can put them on. Works as expected. Specification actually says: before and after an element's document tree content It explicitly says CONTENT. So an element must be a container. – Robert Koritnik Jan 11 '11 at 17:07
feedback

:before and :after rendering inside a container

Pseudo elements can only be defined (or better said are only supported) on container elements. Because the way they are rendered are within the container itself as a DOM element. input can not contain other elements hence they're not supported. A button on the other hand that's also a form element can display them, because it's a container of other sub elements.

If you ask me if some browser does display these two pseudo elements on non-container elements it's a bug or a non-standard conformance. Specification directly talks about element content...

W3C specification

If we carefully read the specification it actually says that they are inserted inside a containing element:

Authors specify the style and location of generated content with the :before and :after pseudo-elements. As their names indicate, the :before and :after pseudo-elements specify the location of content before and after an element's document tree content. The 'content' property, in conjunction with these pseudo-elements, specifies what is inserted.

See? an element's document tree content. As I understand it this means within a container. And I know I'm right.

link|improve this answer
10  
+1 Much better than the accepted answer. Thanks for the clear explanation of the standard itself. So much for [required]::before { content "*"; color: red; } :P – Kevin Peno Jun 16 '11 at 17:23
8  
Tip: If you're having the problem with just a submit input like <input type="submit" value="Send"/>, use <button type="submit">Send</button> instead. The presentation is identical but the <button> is a container and thus supports :beforeand :after. – flu Nov 23 '11 at 14:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.