My HTML file includes a straightforward button tag with a basic CSS Selector
However, when I attempt to render the same, two of my properties are mysteriously crossed out.
https://i.sstatic.net/v86LY.png
There doesn't seem to be another selector applied to the button tag, and after checking the parent tags, it's clear that no CSS selector is altering the color on those either. Can anyone assist me in identifying why these two properties are being crossed out?
.call-button {
width: 100%;
margin-top: 0.5rem;
height: 2rem;
background-color: orange;
color: #fff;
border: orange;
border-radius: 0.3rem;
}
<button class="call-button">My button</button>