<div id="container">
	<p>ここにメインコンテンツが入ります。</p>
	<div id="pagetop"><a href="#container">Page Top</a></div>
</div>
*{
	margin:0;
	padding:0;	
}
#container{
	position:relative;
	width:300px;
	margin:0 auto;
	height:1000px; /* スクロールで挙動を確認するため高さを指定しています。 */	
	background:#ccc;
}
#pagetop{
	position:fixed;
	bottom:0;
	width:300px; /* コンテンツの幅を指定します。*/ 
}
#pagetop a{
	display:block;
	background:#333;
	color:#fff;
	width:100px;
	padding:5px 0;
	text-align:center;
	text-decoration:none;
	float:right;
	margin-right:-100px;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.