css 一行用于“背景”属性

6yt4nkrj  于 2023-08-09  发布在  其他
关注(0)|答案(3)|浏览(118)

我如何能改变这一点:

background-color: #f0f0f0;
background-image: url(../img/file.png);
background-repeat: no-repeat;
background-size: 30px;
background-position: left;

字符串
在这样的事情上:

background : blablalbal blalbalalba balblablala


这可能吗?按顺序,怎么样?

xriantvc

xriantvc1#

有点容易

.foo {
  background: bg-color bg-image position/bg-size bg-repeat bg-origin bg-clip bg-attachment initial|inherit;
}

字符串

pvabu6sv

pvabu6sv2#

是的你可以这样写
background:url(“../img/file.png”)无重复向左滚动30 px #f0f0f0;

bt1cpqcv

bt1cpqcv3#

你得用两条线来做
background:#AAAAAA url()repeat-x repeat-y attachement position-x position-y;
背景大小:30 px;

相关问题