i am a newbie that tries to learn HTML CSS
I would like this border to be in full gray color and as we can see its half / half - i do not understand why, thanks
CodePudding user response:
Use an universal property border
.download-button {
height: 50px;
width: 140px;
border-radius: 7px;
border: 2px solid grey;
color: grey;
font-weight: bold;
font-size: 20px;
cursor: pointer;
}
<button >Download</button>