I am facing an issue with CSS. I have created an HTML page and added some padding and margin properties using inline CSS, which is working fine. However, when I try to add the same properties in my external CSS file, they are not taking effect.
Here is my inline code:
<div class="container-fluid" style="margin-right:-15px; padding:0px;">
And this is the class in my external CSS file:
.no-margin{margin-right:-15px; padding:0px;}