CSS背景属性速记[关闭]

问题描述 投票:0回答:1

如何简写CSS背景属性?

我看过几个背景属性,但是有没有特定的方式或顺序将它写在一行中?

css background background-image
1个回答
0
投票

看这个:形式语法

<bg-image> || <bg-position> [ / <bg-size> ]? || <repeat-style> || <attachment>   

你可以这样写:

.card {
  background-color: #fb0;
  background-image: url("../assets/bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

像这样:

.card {
  background: #fb0 url("../assets/bg.png") center / cover no-repeat fixed;
}
© www.soinside.com 2019 - 2024. All rights reserved.