Latest solutions
Age Calculation App with tailwind css - responsive design
#tailwind-cssSubmitted 5 months agoIn my code, the responsive design part could have been done in any other way? I would like to know other ways it could have been done.
Advice Generator App using Vanilla JavaScript and Tailwind CSS
#tailwind-cssSubmitted 7 months agoFacing some issue when adding the Tailwind CSS breakpoint classes (
sm, md, lg
, etc.) for making responsive layout. I don't know why the classes are not working and was not able to make a responsive layout. But when I used plain CSSmedia queries
for responsive layout it was working fine (you can find the media queries inoutput.css
file in my code, it is commented for now).If you can help please provide a solution. I have added a comment in the code. I am using Tailwind CLI. Also I was unable to horizontally center the Divider Pattern SVG, need help in that also.
Latest comments
- @xStephxSubmitted 6 months ago@abdullahmd2Posted 5 months ago
The number count up animation give a really nice user experience! Great job!
1 - @jeevanraj1Submitted over 2 years ago@abdullahmd2Posted over 2 years ago
Hey Jeevanraj,
To change the color of
<hr>
add the following code in your<hr>
taghr { background-color: var(--Very-dark-blue-line); border: none; height: 1px; }
You can check this website to know more about styling
hr
in CSS.Also you can add
align-items: center;
in yourbody
and removemargin-top: 70px;
from.logo
in your CSS to vertically align the card in center.I hope this will help :)
0