Skip to content

Instantly share code, notes, and snippets.

@nikolailehbrink
Created June 6, 2023 08:02
Show Gist options
  • Save nikolailehbrink/ccd092c208692fd5601d090afe5f6201 to your computer and use it in GitHub Desktop.
Save nikolailehbrink/ccd092c208692fd5601d090afe5f6201 to your computer and use it in GitHub Desktop.
CSS code to set button border color to match the text color
button {
color: red; /* Change this to your desired text color */
border: 2px solid; /* Change 2px to your desired border width */
border-color: inherit; /* The border color will inherit the text color */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment