CSS_導航欄+固定浮動的回到頂部按鈕

Pop_Rain發表於2017-07-20

導航欄

滑鼠點選連結過程顏色變化設定

<style type="text/css">	
	a:link {color:#000000;}      /* 未訪問連結*/
	a:visited {color:#00FF00;}  /* 已訪問連結 */
	a:hover {color:#FF00FF;}  /* 滑鼠移動到連結上 */
	a:active {color:#0000FF;}  /* 滑鼠點選時 */
<style>

固定浮動的回到頂部按鈕

body{background-attachment:fixed;}
<style type="text/css">	
	body 
	{
		background-image:url("button.jpg");
		background-repeat:no-repeat;
		background-position:bottom right;
		background-attachment:fixed; <!--這個設定讓按鈕不隨頁面滾動,固定不變-->
	}
</style>
如果不行就在頁面中新增圖片,然後用js完成連結跳轉;或者試試給連結新增圖片

相關文章