On my Laravel Project, i have the following CSS files
<link rel="stylesheet" type="text/css" href="{{ asset('assets/vendors/iCheck/css/all.css') }}" />
<link rel="stylesheet" type="text/css" href="{{ asset('assets/css/lib.css') }}">
<link rel="stylesheet" type="text/css" href="{{ asset('assets/css/skins/iot_skin.css') }}">
<link rel="stylesheet" type="text/css" href="{{ asset('assets/css/member/custom.css') }}">
Class in custom.css:
a .active-link{
color: blue;
}
In blade:
<a href="{{ route('parts.import.excel') }}" class="active-link">@lang('nav.importexcel')</a> |
This class is not working! I have to style it inline to get a result.
Please let me know if you have an idea where i have to search. Thanks

ctrl+f5to clear the cache ?