我有一个网页,整个页面的样式

<div class="w3-sand w3-grayscale w3-large">


如何使图像xxx显示原始颜色而不是w3灰度?

<img src="xxx">

最佳答案

我认为您是一个初学者:
W3Schools有自己的样式表,让我在w3-sand,w3-large,w3-greyscale类中解释您的样式

.w3-sand, .w3-hover-sand:hover {
    color: #000!important;
    background-color: #fdf5e6!important;
}

.w3-large {
    font-size: 18px!important;
}
.w3-greyscale, .w3-grayscale {
    filter: grayscale(75%); /* this is the line of code applying the filter */
}


这些就是那里提到的特定类的样式...
要从greyscalse中删除​​图像,可以使用从父级中删除图像,也可以从greyscalse中删除​​parent div样式。因为正是在子元素上应用效果的人。因此,只需分解代码或从父元素中删除样式即可。

关于html - 整页具有一种图像原始颜色的样式,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48376189/

10-16 21:18