CSS3对背景图片的裁剪及尺寸和位置的设定方法

建站知识 2021-07-03 08:15www.168986.cn长沙网站建设

背景裁剪

CSS Code复制内容到剪贴板
  1. background-clip:border-box|padding-box|content-box|text  

用于指定background是否包含content之外的border,padding。默认值为border-box,即background从包含border在内的地方开始渲染,IE的默认表现也等同于border-box
背景从border(即包括border在内)开始绘制(渲染)

CSS Code复制内容到剪贴板
  1. #background-clip-border{   
  2.  -moz-background-clip:border-box;           / For Firefox /  
  3.  -webkit-background-clip:border-box;        / For Chrome, Safari /  
  4.  -o-background-clip:border-box;             / For Opera /  
  5.  -ms-background-clip:border-box;            / For IE /  
  6.  background-clip:border-box;                / For Future /  
  7. }  

背景从padding(即包括padding在内)开始绘制

CSS Code复制内容到剪贴板
  1. #background-clip-padding{   
  2.  -moz-background-clip:padding-box;           / For Firefox /  
  3.  -webkit-background-clip:padding-box;        / For Chrome, Safari /  
  4.  -o-background-clip:padding-box;             / For Opera /  
  5.  -ms-background-clip:padding-box;            / For IE /  
  6.  background-clip:padding-box;                / For Future /  
  7. }  

背景从content(即内容部分)开始绘制

CSS Code复制内容到剪贴板
  1. #background-clip-content{   
  2.  -moz-background-clip:content-box;           / For Firefox /  
  3.  -webkit-background-clip:content-box;        / For Chrome, Safari /  
  4.  -o-background-clip:content-box;             / For Opera /  
  5.  -ms-background-clip:content-box;            / For IE /  
  6.  background-clip:content-box;                / For Future /  
  7. }  

将背景裁剪作为文本的填充色

CSS Code复制内容到剪贴板
  1. / 如果你的浏览器支持text值,你将会看到本段文字的颜色直接使用了背景颜色红色,且背景将被裁剪掉不再显示 /  
  2. #background-clip-text{   
  3.  background-color:#f00;   
  4.  -webkit-text-fill-color:transparent;   
  5.  -webkit-background-clip:text;               / For Chrome, Safari /  
  6.  background-clip:text;                       / For Future /  
  7. }  


背景图片位置

CSS Code复制内容到剪贴板
  1. background-origin:border-box|padding-box|content-box  

以border(即包括border)为原点计算背景图的background-position

CSS Code复制内容到剪贴板
  1. #background-origin-border{   
  2.  -moz-background-origin:border-box;         / For Firefox /  
  3.  -webkit-background-origin:border-box;      / For Chrome, Safari /  
  4.  -o-background-origin:border-box;           / For Opera /  
  5.  -ms-background-origin:border-box;          / For IE /  
  6.  background-origin:border-box;              / For Future /  
  7. }  

以padding(即包括padding)为原点计算背景图的background-position

CSS Code复制内容到剪贴板
  1. #background-origin-padding{   
  2.  -moz-background-origin:padding-box;         / For Firefox /  
  3.  -webkit-background-origin:padding-box;      / For Chrome, Safari /  
  4.  -o-background-origin:padding-box;           / For Opera /  
  5.  -ms-background-origin:padding-box;          / For IE /  
  6.  background-origin:padding-box;              / For Future /  
  7. }  

以content(即从content开始)为原点计算背景图的background-position

CSS Code复制内容到剪贴板
  1. #background-origin-content{   
  2.  -moz-background-origin:content-box;         / For Firefox /  
  3.  -webkit-background-origin:content-box;      / For Chrome, Safari /  
  4.  -o-background-origin:content-box;           / For Opera /  
  5.  -ms-background-origin:content-box;          / For IE /  
  6.  background-origin:content-box;              / For Future /  
  7. }  


图片背景尺寸

CSS Code复制内容到剪贴板
  1. background-size:[length|percentage|auto]{1,2}|cover|contain  

 用于设置背景图片的大小,有2个可选值,第1个值用于指定背景图的width,第2个值用于指定背景图的height,如果只指定1个值得,则第2个值默认为auto
数值表示方式

CSS Code复制内容到剪贴板
  1. #background-size{   
  2.  background-size:300px 100px;   
  3. }  

百分比表示方式

CSS Code复制内容到剪贴板
  1. #background-size2{   
  2.  background-size:40% 80%;   
  3. }  

等比扩展图片来填满元素,即cover值

CSS Code复制内容到剪贴板
  1. #background-size3{   
  2.  background-size:cover;   
  3. }  

等比缩小图片来适应元素的尺寸,即contain值

CSS Code复制内容到剪贴板
  1. #background-size4{   
  2.  background-size:contain;   
  3. }  

以图片自身大小来填充元素,即auto值

CSS Code复制内容到剪贴板
  1. #background-size5{   
  2.  background-size:auto;   
  3. }  

Copyright © 2016-2025 www.168986.cn 狼蚁网络 版权所有 Power by