As a newcomer to HTML, CSS, and bootstrap, I am struggling with updating my stylesheet values in the preview. This is the button tag that I am working with:
<button class="btn btn-primary btn-xl">Find out More</button>
However, when attempting to modify the style of the "btn-xl" value in my CSS file:
.btn-xl {
padding: 1rem 2rem;
}
None of the changes seem to reflect on my preview. Can someone please point out where I might be going wrong?
I have verified the links between my HTML and CSS files for any errors but didn't find any issues there. There are no conflicting typos either, so I find myself completely puzzled at this juncture.