19.contentプロパティは、内容を挿入します。 ※ieは標準モードでのみ機能(ie7以下は未対応) 適用要素:before擬似要素、after擬似要素


※★CSS
.sample19:before {
	content: "Copyright(C)";
	background-color:#ffccff;
}
.sample19:after {
	content: ". All Rights Reserved.";
	background-color:#ffccff;
}



※★HTML
<p class="sample19">Web tateda-yoshio</p>

Web tateda-yoshio