Is there a source to use to help me better understand css and the best practices. I'm terrible with css and often times I just don't know where to start. I do have some experience with css, but I don't practice with it as much as I should. I am more of a backend developer, but I'm aiming to become a full stack developer.
Adedamola Shittu
@DammyShittuAll comments
- @jcovington16Submitted over 3 years ago@DammyShittuPosted over 3 years ago
Hi Joshua, Great submission there! I'd advise you to check the following to get better at CSS:
- Codecademy.com (Learn CSS course)
- Freecodecamp
- Traversy Media on Youtube. These should help.
0 - @shivamchandra75Submitted over 3 years ago
how to make the text of the button element transparent.
@DammyShittuPosted over 3 years agoHi 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 - @LisFoSSubmitted over 3 years ago
I'm still new at HTML/CSS and, this is my first time doing a project without a tutorial. I hope to hear any feedback to improve my skills :)
@DammyShittuPosted over 3 years agoHi LisFoS, Well done on the submission. It looks really nice. The desktop design is amazing and responsiveness isn't really 100% but we keep learning. For the "container" class, since you would want the background color to cover the entire page, then I'd advise you set the width to 100%.
I also worked on this a while ago and you can check it out. Here's the repo link: https://github.com/DammyShittu/Preview-Card.
Great work!!
0