2008年3月13日 星期四

背景位置

背景置中
複製以下程式碼至<head>與</head>之間
<style type=text/css>

<!--

body{

background-image:url(圖址);

background-position:center;

background-attachment:fixed;

background-repeat:no-repeat;}

-->

</style>


背景右上
複製以下程式碼至<head>與</head>之間
<style type=text/css>

<!--

body{

background-image:url(圖址);

background-position:right top;

background-attachment:fixed;

background-repeat:no-repeat;}

-->

</style>


背景右下
複製以下程式碼至<head>與</head>之間
<style type=text/css>

<!--

body{

background-image:url(圖址);

background-position:right bottom;

background-attachment:fixed;

background-repeat:no-repeat;}

-->

</style>


背景左上
複製以下程式碼至<head>與</head>之間
<style type=text/css>

<!--

body{

background-image:url(圖址);

background-position:left top;

background-attachment:fixed;

background-repeat:no-repeat;}

-->

</style>


背景左下
複製以下程式碼至<head>與</head>之間
<style type=text/css>

<!--

body{

background-image:url(圖址);

background-position:left bottom;

background-attachment:fixed;

background-repeat:no-repeat;}

-->

</style>


橫排置中
複製以下程式碼至<head>與</head>之間
<style type=text/css>

<!--

body{

background-image:url(圖址);

background-attachment:fixed;

background-repeat:repeat-x;

background-position:center;}

-->

</style>


橫排置上
複製以下程式碼至<head>與</head>之間
<style type=text/css>

<!--

body{

background-image:url(圖址);

background-attachment:fixed;

background-repeat:repeat-x;

background-position:top;}

-->

</style>


橫排置下
複製以下程式碼至<head>與</head>之間
<style type=text/css>

<!--

body{

background-image:url(圖址);

background-attachment:fixed;

background-repeat:repeat-x;

background-position:bottom;}

-->

</style>


橫排置左
複製以下程式碼至<head>與</head>之間
<style type=text/css>

<!--

body{

background-image:url(圖址);

background-attachment:fixed;

background-repeat:repeat-y;

background-position:left;}

-->

</style>


橫排置右
複製以下程式碼至<head>與</head>之間
<style type=text/css>

<!--

body{

background-image:url(圖址);

background-attachment:fixed;

background-repeat:repeat-y;

background-position:right;}

-->

</style>

沒有留言: