Is there a way to remove the right padding from the class "no-border"? I attempted some CSS adjustments, but so far nothing has worked. I tried using "padding-right:none" without success.
#menu-bar-container-2 { border: 1px solid gray; }
.menu-bar-2 a {
float: left;
color: black;
padding: 2px 16px 0px 16px;
font-size: 15px;
text-decoration: none;
border-right: 1px #bb4545 solid;
}
.no-border {
border-right: none !important;
padding: none !important;
}
<div id="menu-bar-container-2">
<div class="menu-bar-2">
<a href="">Home</a>
<a href="">War in Ukraine</a>
<a href="">Coronavirus</a>
<a href="">Climate</a>
<a href="">Video</a>
<a href="">Asia</a>
<a href="">UK</a>
<a href="">Business</a>
<a href="">Tech</a>
<a href="">Science</a>
<a href="">Stories</a>
<a href="">Entertainment & Arts</a>
<a href="">Health</a>
<a href="" class="no-border">More</a>
<img src="images/Down Arrow.png">
</div>
</div>