CSS 背景
Posted claudia529
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS 背景相关的知识,希望对你有一定的参考价值。
<style> h1 background-color:#6495ed; p background-color:#e0ffff; div background-color:#b0c4de; </style>
背景颜色和图片插入
<style> body background-image:url(‘paper.gif‘); background-color:#cccccc; </style> <style> body background-coolor:rgb(222,222,222);
直接铺
<style> body background-image:url(‘gradient2.png‘); </style>
水平铺
<style> body background-image:url(‘gradient2.png‘); background-repeat:repeat-x; </style>
设置定位+不平铺
<style> body background-image:url(‘img_tree.png‘); background-repeat:no-repeat; </style>
背景图片不重复,设置 position 实例。
背景图片只显示一次,并与文本分开。
实例中还添加了 margin-right 属性用于让文本与图片间隔开。
<style> body background-image:url(‘img_tree.png‘); background-repeat:no-repeat; background-position:right top; margin-right:200px; </style>
以上是关于CSS 背景的主要内容,如果未能解决你的问题,请参考以下文章