I have an issue with ::after selector, heres my code:
HTML:
...
<div class="post">
<form>
<textarea placeholder="Message Here..." maxlength="255"></textarea>
</form>
</div>
...
CSS:
.wrapper .left_section .profile_small .post form textarea:focus::after {
content:"<input type='submit' value='Post' />";
}
So when the text area is selected (in focus) I'd like the submit button to appear. Does anyone know of the solution?
Thanks in advance.