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
background-color: rgba(0, 0, 0, 50%) background-color: rgba(0, 0, 0, 80%) css代码中有关背景色的写法,rbga中的a应该是0-1之间的一个小数,用百分比的话在有些手机上无法正确的展示。 应该修改为 background-color: rgba(0, 0, 0, 50%) ---> background-color: rgba(0, 0, 0, 0.5) background-color: rgba(0, 0, 0, 80%) ---> background-color: rgba(0, 0, 0, 0.8)
https://www.w3.org/TR/css-color-3/#transparency
https://developer.mozilla.org/zh-CN/docs/Web/CSS/opacity
The text was updated successfully, but these errors were encountered:
56fa28b
No branches or pull requests
background-color: rgba(0, 0, 0, 50%)
background-color: rgba(0, 0, 0, 80%)
css代码中有关背景色的写法,rbga中的a应该是0-1之间的一个小数,用百分比的话在有些手机上无法正确的展示。
应该修改为
background-color: rgba(0, 0, 0, 50%) ---> background-color: rgba(0, 0, 0, 0.5)
background-color: rgba(0, 0, 0, 80%) ---> background-color: rgba(0, 0, 0, 0.8)
https://www.w3.org/TR/css-color-3/#transparency
https://developer.mozilla.org/zh-CN/docs/Web/CSS/opacity
The text was updated successfully, but these errors were encountered: