css+div background属性怎么缩写

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css+div background属性怎么缩写相关的知识,希望对你有一定的参考价值。

html的css+div background属性怎么缩写

background-image:url(/images/pngt.png); background-position:right 0; background-repeat:no-repeat;

写成background:url(/images/pngt.png) -0px 0px no-repeat;类似这样的,就是写成background:

因为那样太长了,整个网页很多地方用到,希望大侠能帮忙,感谢。

background:url(/images/pngt.png) right 0 no-repeat;
background:颜色 图片url X坐标 Y坐标 是否重复平铺;
顺序就是这样,颜色你也可以放最后面。

参考技术A background: #00FF00 url(bgimage.gif) no-repeat fixed top;

不要什么属性删除什么属性就行了。

参考技术B 像你写的那样,就可以实现了。
background:url(/images/pngt.png) right 0 no-repeat;追问

不是的,我需要多用一个图片坐标的属性background:url(/images/pngt.png) -0px 0px no-repeat; 里面的0px 0px是我读一张大图片里面的坐标。我还需要背景居右的居右的属性

参考技术C background:url(/images/pngt.png) right 0 no-repeat;

以上是关于css+div background属性怎么缩写的主要内容,如果未能解决你的问题,请参考以下文章

css从一张大的图片A上截取一个50*50的小图片b,放在大小为20*20的div中,怎么让b在div中完整显示?

css 图片铺满整个div

CSS里面写IMG标签的background属性,默认带border,怎么去掉?

CSS--background系列属性

CSS中background-image属性无效,怎么解决?

vscode中html/css快速补全插件Emmet用法