Is there any method or extension to see which CSS rules are applied on a page? For example, span rule does not apply to anything.
<html>
<head>
<style>
    div{
        background: grey;
        line-height: 64px;
        width:64px;
        height:64px;
        text-align:center;
        color:white;
        font-family:verdana;
        font-size:35px;
        border-radius: 50%;
    }
    div:hover{
        background-color:#3b5998;
    }
    span {
        background-color:black;
    }
</style>
</head>
<div>
    f
</div>
If I can see only the rules applied, I can delete unnecessary rules so that, page can load faster.
 
     
    