我有以下html代码:
<a href="#idSomething"><i class="fas fa-arrow-circle-down fa-3x"></i></a>我想知道如何去除子元素"i“中标签"a”的样式。
obs:我正在使用令人敬畏的图标。
发布于 2019-03-04 23:09:10
您将需要查看应用于i标记的样式,幸运的是,这在现代浏览器中很容易做到,然后覆盖规则,如
#idSomething > i {
/*Your rules*/
}https://stackoverflow.com/questions/54985835
复制相似问题