怎么用css定义部分背景颜色

html-css016

怎么用css定义部分背景颜色,第1张

需要准备的材料分别有:电脑、浏览器、html编辑器。

1、首先,打开html编辑器,新建html文件,例如:index.html。

2、在index.html中的<style>标签中,输入css代码:div{background-color: #0b93d5}。

3、浏览器运行index.html页面,此时成功实现了只在文字的后面又蓝色背景色。

楼主看到没:

<tr class="word01" bgcolor=#eeeeee >

<tr class="word01" bgcolor=#ffffff >

以上两个tr里,你加了bgcolor,所以这个颜色把背景图给挡住了。。

把这里的颜色去掉就行了。。

在CSS中指定背景图片中的某一区域为背景是可以实现的。需要用到background-postion属性。

如background-position: 50px 100px

方法示例可参考:

http://www.w3school.com.cn/tiy/t.asp?f=csse_background-position_pixel