We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
第133天 如何使用css3实现一个div设置多张背景图片?
The text was updated successfully, but these errors were encountered:
background-image:url("1.jpg"),url("2.jpg"),url("3.jpg"); background-repeat: no-repeat, no-repeat, no-repeat; background-position: 0 0, 200px 0, 400px 201px;
Sorry, something went wrong.
在 CSS3 中,只要在 background 中按顺序添加 url 就可以实现多张背景图片。每一个图片用 , 分开即可。 需要注意的就是浏览器的兼容问题。
background
url
,
示例地址:https://codepen.io/Konata9/pen/PoYBPLY
No branches or pull requests
第133天 如何使用css3实现一个div设置多张背景图片?
The text was updated successfully, but these errors were encountered: