Why isn't the button invoking its CSS class, but instead inheriting the CSS class of the parent div? Can someone provide assistance?
.sq-ui-ban {
background-color: #abacb1;
color: black;
width: 1000px;
height: auto;
overflow: hidden;
font-style: normal;
font-family: Calibri;
font-size: 20px;
font-weight: normal;
position: relative;
}
.moreBan {
position: fixed;
cursor: pointer;
font-family: Calibri;
background: #1c94c4;
text-align: center;
color: #FFFFFF;
border: none;
font-size: large;
padding: 5px;
position: absolute;
bottom: 0px;
right: 0px;
}
<div class="sq-ui-ban">
<button class="moreBan"><i class="fa fa-arrow-circle-o-down"></i><span class="moretext">More</span></button>
</div>