Design comparison
SolutionDesign
Solution retrospective
how to make the text of the button element transparent.
Community feedback
- @DammyShittuPosted over 3 years ago
Hi Shivam, Great work!
For the buttons, please give the "Learn More" text of each section the same color as the background-color of the section it is in. What I mean is;
`#card1 button {
color: hsl(31, 77%, 52%);
}`
To make the button element transparent, please add;
`button:hover{
background: inherit; color: #fff; border: 1px solid #fff;
}`
That should fix it.
Nice one Shivam!
0@shivamchandra75Posted over 3 years ago@DammyShittu Thank you , for your help that worked!!
0
Please log in to post a comment
Log in with GitHubJoin our Discord community
Join thousands of Frontend Mentor community members taking the challenges, sharing resources, helping each other, and chatting about all things front-end!
Join our Discord