根据背景颜色反转 CSS 字体颜色
在 CSS 中,没有直接属性允许您根据背景颜色反转字体颜色背景颜色。但是,您可以利用多种技术来实现此效果。
使用伪元素
伪元素可用于在文本周围创建包装,这然后你就可以独立设计风格了。例如:
.inverted-bar { position: relative; } .inverted-bar:before, .inverted-bar:after { padding: 10px 0; text-indent: 10px; position: absolute; white-space: nowrap; overflow: hidden; content: attr(data-content); } .inverted-bar:before { background-color: aqua; color: red; width: 100%; } .inverted-bar:after { background-color: red; color: aqua; width: 20%; }
使用两个DIV
对于不支持伪元素的旧浏览器,您可以使用两个DIV:
.inverted-bar { position: relative; padding: 10px; text-indent: 10px; } .inverted-bar:before { content: attr(data-content); background-color: aqua; color: red; position: absolute; top: 0; left: 0; z-index: 1; white-space: nowrap; overflow: hidden; padding: 10px 0; width: 100%; } .inverted-bar > div { content: attr(data-content); background-color: red; color: aqua; position: absolute; padding: 10px 0; top: 0; left: 0; width: 20%; }
注意:具体实现可能会有所不同,具体取决于您的具体要求和浏览器支持。
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3