发布时间:2023-05-02 文章分类:WEB开发, 电脑百科 投稿人:赵颖 字号: 默认 | | 超大 打印

背景颜色

backgroud-color:transparent   color

transparent : 背景色透明       color : 指定背景颜色

例:将这个段落的背景设为红色    html设置背景颜色以及背景图片

例(采用了内嵌样式的行内标签):   html设置背景颜色以及背景图片

 颜色的表达方式有四种:(直接写颜色单词、#+十六进制数、rgb(x,x,x)、rgba(x,x,x,x)最后一位代表颜色的透明度)

例:四种表达方式(为div盒子加了左浮动)

    .boxThree>div{
        float: left;
    }
  </style>
  <body>
<div class="boxThree">
    <div style="background-color:red; width: 40px;height: 40px;">1</div>
    <div style="background-color:rgb(255,255,20) ;width: 40px;height: 40px;">2</div>
    <div style="background-color:#f0f ;width: 40px;height: 40px;">3</div>
    <div style="background-color:rgba(255, 0, 0, 0.5);  width: 40px;height: 40px;">4</div>
</div>
  </body>

效果:html设置背景颜色以及背景图片

 背景图片:

样式效果:repeat-x/repeat-y/no-repeat

html设置背景颜色以及背景图片 html设置背景颜色以及背景图片 html设置背景颜色以及背景图片

样式效果: 自己设置宽高(此效果图设置宽与容器一样宽,高自动)/cover/contain

html设置背景颜色以及背景图片 html设置背景颜色以及背景图片html设置背景颜色以及背景图片

length : 百分比 | 由浮点数字和单位标识符组成的长度值。      position : top | center | bottom | left | center | right

样式效果:百分百/position (单词写法右上)/position数字写法(示例用于雪碧图)

html设置背景颜色以及背景图片   html设置背景颜色以及背景图片   html设置背景颜色以及背景图片

background: background-color ||background-image ||background-repeat ||background-position

background-color设置背景图片时可以不设置背景颜色(如有需要也可设置)

 示例图片来源于网络如有侵权请联系作者删除谢谢