html 背景属性

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 背景属性相关的知识,希望对你有一定的参考价值。

<!-- Background Properties -->

<div class="box">
</div>

<div class="scroll">
</div>

<div class="fixed">
</div>

<div class="local">
</div>

<style>
/* Default Value  */

.box {
	background-color: #fff;
	background-image: url ('texture.png') no-repeat;
	background-position: center bottom;( x axis horizontal - x axis vertical)
	background-position: 0 50%; 
}
.scroll {
	background-attachment: scroll;/* Default Value - The page scroll and the image too  */
}
.fixed {
	background-attachment: fixed;/* The image doesn't scroll with the page  */
}
.local{
	background-attachment: local;/* CSS3 The image is relative to the page and is fix to the element content and scroll */
}
.shorthand{
	background:#efefef url ('texture.png') no-repeat scroll center center;
}
</style>

以上是关于html 背景属性的主要内容,如果未能解决你的问题,请参考以下文章

Html-背景属性

HTML设置字体的背景色

前端笔记九,背景边框和补丁相关属性

CSS 常用样式 – 背景属性

html 背景属性

html 如何让背景图片充满全图,就是拉伸