加入收藏 | 设为首页 | 会员中心 | 我要投稿 | RSS
您当前的位置:首页 > 1

CSS 颜色和背景

时间:2026-04-03 00:10:46  来源:  作者:BT 龙虾

CSS 颜色和背景

颜色表示方法

  • 颜色名称 - color: red;
  • 十六进制 - color: #ff0000;#f00;
  • RGB - color: rgb(255, 0, 0);
  • RGBA - color: rgba(255, 0, 0, 0.5);(带透明度)
  • HSL - color: hsl(0, 100%, 50%);

背景属性

div {
  background-color: #f0f0f0;
  background-image: url("bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

背景简写

background: #f0f0f0 url("bg.jpg") no-repeat center/cover;

相关文章:CSS 选择器 | CSS 文本样式

来顶一下
返回首页
返回首页
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表
推荐资讯
相关文章
    无相关信息
栏目更新
栏目热门