12.positionプロパティは、ボックス表示位置を指定します。
ここでは、リンクに対する位置の設定を紹介します。 適用要素:すべての要素


※★CSS
a:hover {
	position: relative;
	top: 1px;
	left: 1px;
	text-decoration: none;
}


※★HTML
<div><a href="http://shin-sapporo.com/">マウスオーバーでテキストが移動します。</a></div>

マウスオーバーでテキストが移動します。