Table of Contents
一、Css background背景语法
二、背景颜色  
三、CSS图片背景
四、背景居中
五、复合背景样式简写
六、CSS background(背景)总结
Home Web Front-end HTML Tutorial CSS 背景background使用方法

CSS 背景background使用方法

Jun 01, 2016 am 09:53 AM
background css background

一、Css background背景语法

CSS背景基础知识

CSS 背景这里指通过CSS对对象设置背景属性,如通过CSS设置背景各种样式。

背景语法:

<code class="language-css">background: background-color || background-image || background-repeat || background-attachment || background-position</code>
Copy after login

 

CSS中背景单词:

background CSS手册查询-background
background-color 设置颜色作为对象背景颜色
background-image 设置图片作为背景图片
background-repeat 设置背景平铺重复方向
background-attachment 设置或检索背景图像是随对象内容滚动还是固定的。
background-position 设置或检索对象的背景图像位置。

Background背景样式的值是复合属性值组合,也就是背景单词的值可以跟多个属性值,值与值之间使用一个空格间隔链接上即可。
如:

<code class="language-css">background:#000 url(图片地址) no-repeat left top</code>
Copy after login

Css background背景作用:

1、设置纯色背景。背景background可以设置对象纯色的背景颜色,
2、设置图为背景。可以设置对象背景为图片,如果背景是图片可以让图片重复平铺横铺,或将图片作为对象背景固定在对象任何位置。

设置网页背景样式

Html原始背景与CSS背景对照
Html是指对应效果的table背景设置

Html背景单词:

Bgcolor设置背景颜色 与CSS背景颜色对应background-color
Background设置图片作为背景与CSS背景图片对应background-image

 

二、背景颜色  

<code class="language-css">background-color:#FFF</code>
Copy after login
Copy after login

设置对象背景为纯白色

如果是给table设置背景颜色可以使用bgcolor="颜色值"即可设置对象背景颜色。
如果是CSS背景颜色,可使用background-color:颜色值;或 background:颜色值设置对象背景颜色。

 

三、CSS图片背景

CSS可以使用background或background-image直接引用图片地址来设置图片作为对象背景。

<code class="language-css">background:url(http://www.manongjc.com/logo.gif);</code>
Copy after login

设置LOGO图片作为背景

<code class="language-css">background-image:url(http://www.manongjc.com/logo.gif);</code>
Copy after login

具有相同效果。这样设置图片作为背景有个缺陷就是图片会上下左右的重复。

background-attachment使用解析:

background-attachment:fixed; 背景固定

background-attachment:scroll; css背景图片是随对象内容滚动

图片background背景语法:

<code class="language-css">background-image :url (url)</code>
Copy after login

background-image :url (http://www.manongjc.com/logo.gif)

设置对象背景为图片http://www.manongjc.com/logo.gif

如果图片作为背景时候要求是否重复平铺,平铺方向等我们都需要background-position和background-repeat配合使用

<code class="language-css">div{background-image :url (http://www.manongjc.com/logo.gif);
background-repeat : no-repeat;background-position : 5px 6px } </code>
Copy after login

这里定义对象div,背景图片为http://www.manongjc.com/logo.gif,并且背景图片不重复,定位于div对象靠左距离5px,靠上距离6px

 

四、背景居中

CSS 背景分为左右居中和上下居中。

背景图像上下居中,可以使用计算上下高度然后平分设置,如上下高度距离为500px,那就设置图片居顶部多少PX可以让图片实现上下居中。

 

五、复合背景样式简写

我们使用时候都需要考虑到代码优简,这里可以优化的简写代码

1、如果只设置背景为单一颜色

<code class="language-css">background-color:#FFF</code>
Copy after login
Copy after login

我们简写为

<code class="language-css">background:#FFF</code>
Copy after login

2、图片设置为背景简写

<code class="language-css">background-image :url (http://www.manongjc.com/logo.gif);
background-repeat : no-repeat;background-position : 5px 6px </code>
Copy after login

我们简写为:

<code class="language-css">background:url (http://www.manongjc.com/logo.gif) no-repeat 5px 6px </code>
Copy after login

 

六、CSS background(背景)总结

使用图片作为背景在一个网页布局中常常会遇到,希望大家能在实际中掌握其知识。一般设置对象图片作为背景属性实例 background:#666 url(图片地址) no-repeat center top ;(解释首先设置背景颜色 紧跟设置图片作背景 紧跟图片是否重复 然后跟图片在对象位置。前面的背景颜色可以不用设同时不是必须,一般使用图片作为对象背景如果要设置图片是否重复显示距离位置将设置图片位置)

1、设置图片作为背景如果图片设置图片在X坐标方向重复,如果再设置图片在对象位置的左或右位置时将无效,可设置在对象上或下位置开始显示。

2、设置图片作为背景如果图片设置图片在Y坐标方向重复,如果再设置图片在对象位置的上或下位置时将无效,可设置图片在对象左或右位置开始显示。

3、如果设置背景完全重复显示,那设置图片在对象上下左右位置开始显示将无线。

网页布局时候我们常常对网页背景设置颜色、背景设置图片,达到我们需要的美观效果,我们实践制作写css background背景尽量从简,图片引入时候注意路径正确,如需定位对象背景。

经典背景复合属性表达式:

<code class="language-css">.manongjc{background:#FFF url (http://www.manongjc.com/logo.gif) no-repeat 5px 6px} </code>
Copy after login

这里既设置背景颜色,背景图片引入,背景图片定位、图片作为背景是否重复的样式。

相关阅读:

CSS 教程

CSS3 教程

CSS 参考手册

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What are the encoded fonts used in the picture? How to apply this font style in a project? What are the encoded fonts used in the picture? How to apply this font style in a project? Apr 05, 2025 pm 05:06 PM

Introduction and use of encoded fonts In programming and web design, choosing the right font can greatly improve the readability and aesthetics of the code. recent,...

How to draw a specific shape with an orange background color using CSS' clip-path property? How to draw a specific shape with an orange background color using CSS' clip-path property? Apr 05, 2025 pm 04:36 PM

Practical application cases of CSS drawing function In modern web design, CSS can not only be used for layout and style, but also for creating complex graphics and animations. May...

How to add loading animation to the a tag click and then jump? How to add loading animation to the a tag click and then jump? Apr 05, 2025 pm 04:48 PM

Cleverly implementing the short animation and jump after clicking the a tag, many times, we hope that after clicking the a tag, the page can first display a short loading event...

How to customize the hover effect of merge rows in el-table? How to customize the hover effect of merge rows in el-table? Apr 05, 2025 pm 06:54 PM

How to customize the hover effect of merge rows in el-table? Using Element...

How to elegantly achieve high adaptability of the middle content in the three-line layout? How to elegantly achieve high adaptability of the middle content in the three-line layout? Apr 05, 2025 pm 04:39 PM

Discussion on the height of adaptive intermediate content in three-line layout In web layout, you often encounter the need to implement three-line layout and the intermediate content is highly variable...

What is the <figure> element in CSS for? What is the
element in CSS for? Apr 05, 2025 pm 04:51 PM

What are the elements in CSS for? During the learning and using CSS, you may encounter some less common HTML elements, such as &lt...

How to use locally installed 'Jingnanmai Round' on a web page without loading the font file? How to use locally installed 'Jingnanmai Round' on a web page without loading the font file? Apr 05, 2025 pm 04:54 PM

How to use locally installed font files on web pages In web page development, sometimes we will encounter the situation where we need to use specific fonts installed on our computer...

How to correctly display the locally installed 'Jingnan Mai Round Body' on the web page? How to correctly display the locally installed 'Jingnan Mai Round Body' on the web page? Apr 05, 2025 pm 10:33 PM

Using locally installed font files in web pages Recently, I downloaded a free font from the internet and successfully installed it into my system. Now...

See all articles