css的background屬性

背景background屬性以下:css

background:設置或檢索對象的背景特性
background-color:設置或檢索對象的背景顏色
background-image:設置或檢索對象的背景圖像
background-repeat:設置或檢索對象的背景圖像如何鋪排填充
background-attachment:設置或檢索對象的背景圖像是隨對象內容滾動仍是固定的
background-position:設置或檢索對象的背景圖像位置
css3新增的:
background-origin:設置或檢索對象的背景圖像顯示的原點
background-clip:檢索或設置對象的背景向外裁剪的區域
background-size:檢索或設置對象的背景圖像的尺寸大小css3

background-origin:<box> [ , <box> ]*
<box> = border-box | padding-box | content-boxurl

div
{ padding:25px;
border:10px dotted #000000;
background-image:url('/i/eg_smile.gif');
background-origin:content-box;
background-repeat:no-repeat;}

圖片描述

div
{ padding:25px;
border:10px dotted #000000;
background-image:url('/i/eg_smile.gif');
background-origin:border-box;
background-repeat:no-repeat;}

圖片描述

div
{ padding:25px;
border:10px dotted #000000;
background-image:url('/i/eg_smile.gif');
background-origin:padding-box;
background-repeat:no-repeat;}

圖片描述

相關文章
相關標籤/搜索