background(background是什么意思)

background是什么意思

1、background的基本意思是“背景”“底色”,主要指图画或照片中在主要人物或景象之后起衬托作用的部分。引申可表示“人的背景资料”,主要包括家庭、所属社会阶层、经历、学历状况等。还可表示“背景情况”,指事情发生时所处的时间、地点和外部环境等。

2、background主要用作可数名词。作“后景;背景”“底色”解时常用作单数名词;作“(事态发展等的)背景”解时常用作单数名词,也可用作不可数名词;作“不显眼的位置;幕后 ”解时只用作单数名词。

3、background后接介词for,of或to表示“某方面的背景或经历”; 接介词in 表示“在…背景中;在幕后”;前面加介词against表示“映衬在…背景上”。

4、“tell me your background”现较流行,等同于“tell me all about yourself”。

扩展资料:

近义词

1、backdrop 

读音:英 [’bækdrɒp] 美 [’bækdrɑːp]    

n. 背景幕;背景

The events of the 1930s provided the backdrop for the film.

二十世纪三十年代的一些事件为这部电影提供了背景。

2、context  

读音:英 [’kɒntekst]  美 [’kɒntekst]    

n. 上下文;环境;背景

This speech needs to be set in the context of Britain in the 1960s.

这篇演说需要放到20世纪60年代的英国这一背景之下来看待。


background的音标读法

可以把这个单词拆开看成两个单词。
1、back /bæk/ ,b发/b/,a发/æ/,c不发音,k发/k/
2、ground /graund/,g发/g/,r发/r/,ou发/au/,n发/n/,d发/d/
很简单的。

CSS中的background和background-color的区别

区别如下:

一,background可以设置背景颜色、背景图片、定位等。而background-color只能设置背景颜色 。

二,底色(background-color)是纯的色区。背景(background),可以是纯色也可以是图案。

三,background的属性值是图片资源,而background-color的是颜色。

扩展资料:

常用的CSS属性的英文单词总结及用法、解释:

float – 浮动:设置块元素的浮动效果。可选常用到参数left、right 。

css width – 宽度:确定盒子本身的宽度,可以使盒子的宽度不依靠它所包含的内容多少。

css height – 高度 :确定盒子本身的高度。

css clear – 清除 :用于清除设置的浮动效果,常用参数both 、left、right。

margin – 边距 :控制围绕边框的边距大小。其中包含4个属性:margin-top控制上边距的宽度。

margin-right:控制右边距的宽度。

margin-bottom:控制下边距的宽度。

margin-left:控制左边距的宽度。

padding -内边界:确定围绕块元素的空格填充数量。

font-family- css字体:设定时,需考虑浏览器中有无该字体。 

font-size – css字体大小:注意度量html单位。 

font-weight – css字体粗细-css加粗样式:除了normal(正常)、bold(粗体)、bolder(特粗)、lighter(细体)外,还有9种以像素为度量为单位的设置方式。 

css font-style-样式:css字型。 

css line-height – css行高:行距。

font-variant – css变形:可以将正常文字一半尺寸后大写显示。 

text-transform – css大小写:这项属性能轻而易举地控制字母大小写。

background的详解实例

background-color:{颜色值|transparent(默认值)} 属性设置元素的背景颜色。
color 颜色值可以是颜色名称、rgb 值或者十六进制数。
transparent 默认。背景颜色为透明。
例:
body
{
background-color: #00FF00
}
1.background-image:{URL(url)} 把图像设置为背景。
url(URL) 指向图像的路径。
none 默认。无背景图像。
例:
body
{
background-image: url(pic.jpg);
}
2.background-repeat:{repeat|no-repeat|repeat-X|repeat-Y} 设置背景图像是否及如何重复。
repeat 默认。背景图像将在垂直方向和水平方向重复。
repeat-x 背景图像将在水平方向重复。
repeat-y 背景图像将在垂直方向重复。
no-repeat 背景图像将仅显示一次。
例:
body
{
background-image: url(pic.jpg);
background-repeat: no-repeat;
}
3.background-attachment:{fixed|scroll} 背景图像是否固定或者随着页面的其余部分滚动
scroll 默认。背景图像会随着页面其余部分的滚动而移动。
fixed 当页面的其余部分滚动时,背景图像不会移动。
例:
body
{
background-attachment: fixed;
background-image: url(pic.jpg);
}
4.background-position:{位置值} 属性设置背景图像的起始位置。
top left
top center
top right
center left
center center
center right
bottom left
bottom center
bottom right
x% y%
xpos ypos
使用百分数定位时,其实是将背景图片的百分比指定的位置和元素的百分比位置对齐。也就是说,百分数定位是改变了背景图和元素的对齐基点。不再像使用像素和关键词定位时,使用背景图和元素的左上角为对齐基点。例如上例的background-position: 100% 50%; 就是将背景图片的100%(right) 50%(center)这个点,和元素的100%(right) 50%(center)这个点对齐。
使用数值需要注意的是,当只有一个数值时,这个值将用于横坐标,纵坐标将默认是50%。
例:
body
{
background-image: url(pic.jpg);
background-position: top;
}
用javascript改变背景图片
例:
《html》
《head》
《meta http-equiv=Content-Type content=text/html; charset=gb2312》
《title》新建网页 1《/title》
《script language=javascript》
function hi()
{
document.body.style.background=no-repeat url(../images/asp_logo1.gif) 50% 50%;
}
《/script》
《/head》
《body》
《input type=button value=显示 onclick=javascript:hi()》
《/body》
《/html》

background的概念

背景 (background) 属性定义元素的背景效果
元素的背景区包括前景之下直到边框边界的所有空间。因此,内容框与内边距都是元素背景的一部分,且边框画在背景上。
CSS 允许应用纯色作为背景,也允许使用背景图像创建相当复杂的效果;CSS 在这方面的能力远远在 HTML 之上。
background 是用于在一个声明中设置所有背景属性的一个简写属性。
格式: background: {属性值}
继承性: NO
可能的值:
background-color
background-image
background-repeat
background-attachment
background-position
注:可以在此声明中声明1到5个背景属性
这只是 CSS 1.0 的属性 在CSS 2.0 background已经退出了历史舞台;
例:
《style type=text/css》
body
{
background: #ff0000 url(’i/eg_bg_03.gif’) no-repeat fixed center;
}
《/style》

background怎么用

background 英[ˈbækgraʊnd] 美[ˈbækˌɡraʊnd]
n. (画等的) 背景; 底色; 背景资料; 配乐;
[例句]Moulded by his background, he could not escape the traditional role of strict father
受成长环境的影响,他摆脱不了严父的传统角色。
[其他] 复数:backgrounds

background在html中是什么意思啊

background是“背景”的意思。
在html语言下,background是放背景图案和背景颜色的地方。background后面跟的链接都是图片的链接或者颜色的设置。

backgroundcolor是什么意思

background color
英 [ˈbækɡraund ˈkʌlə] 美 [ˈbækˌɡraʊnd ˈkʌlɚ]
[释义] 背景颜色;
[网络] 背景颜色 背景色彩; 背景色彩; 背景色;
[例句]In an old browser, will you be able to read black type on the background color you picked?
在陈旧的浏览器中,你是否能在背景颜色下,清楚地浏览内容呢?

CSS中的color\background-color有什么区别

区别:作用不同

color用于设置字体颜色,而background-color同于设置背景颜色。

实例

1、color

body {  color:red; } h1{  color:#00ff00; } p{  color:rgb(0,0,255); }

2、background-color

body{  background-color:yellow;} h1{  background-color:#00ff00; } p {  background-color:rgb(255,0,255);}

扩展资料

background-color范围

background-color 属性为元素设置一种纯色。这种颜色会填充元素的内容、内边距和边框区域,扩展到元素边框的外边界(但不包括外边距)。如果边框有透明部分(如虚线边框),会透过这些透明部分显示出背景色。

color范围

这个属性设置了一个元素的前景色(在 HTML 表现中,就是元素文本的颜色);光栅图像不受 color 影响。这个颜色还会应用到元素的所有边框,除非被 border-color 或另外某个边框颜色属性覆盖。

color参数

1、color_name:规定颜色值为颜色名称的背景颜色(比如 red)。    

2、hex_number:规定颜色值为十六进制值的背景颜色(比如 #ff0000)。    

3、rgb_number:规定颜色值为 rgb 代码的背景颜色(比如 rgb(255,0,0))。    

4、transparent:默认。背景颜色为透明。    

5、inherit:规定应该从父元素继承 background-color 属性的设置。

background和background-Color的区别介绍

background:背景(可以是图片也可以是纯颜色填充)
background-color:背景颜色(纯颜色填充或渐变色纹理等填充,不能是图片)