セレクタ:before

書式

セレクタ:before

対象

-

継承

-

初期値

-

バージョン

CSS Level 2

対応ブラウザ

NN6.0以降, Firefox, Opera 6, Safari

解説

要素の前に表示する文字などを指定します。
サンプルコード
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Sample</title>
<style type="text/css"><!--
body { margin:0px; }
div { position:absolute; left:10px; top:10px;width:300px;height:100px;
border:1px blue solid;
}
a:before { content:"■"; }
--></style>
</head>
<body>
<div>
リンク文字の前に■が表示されます。<br>
<a href="http://www.openspc2.org/">OpenSpace</a><br>
<a href="http://www.google.co.jp/">Google</a><br>
</div>
</body>
</html>
実際のサンプルを実行する