要素の後にテキスト、もしくは画像を表示させます。
Fx1 / Fx2 / O6 / O7
要素[.class名][#id名]:after{ content : 値; }
<html> <head> <title>サンプルコード</title> <style type="text/css"> #sample1:after { content : "直後にテキストが挿入されます"; background-color : #cccccc; } #sample2:after { content : url(../../../../images/development/htmlcss/image.gif); background-color : #cccccc; } </style> </head> <body> <div id="sample1">afterサンプル1</div> <div id="sample2">afterサンプル2</div> </body> </html>