Hey there! I'm a frontend web developer on a journey toward becoming a full-stack powerhouse. Passionate about crafting stunning user interfaces, I'm constantly refining my skills in HTML, CSS, and JavaScript. Eager to dive deeper into backend technologies.
I’m currently learning...Responsive web design and development, while diving deep into the captivating world of JavaScript fundamentals.
Latest comments
- @harolddatusSubmitted about 1 year ago@Joel12rPosted about 1 year ago
In your CSS, the media query is missing the and keyword before specifying the condition. Here's the corrected media query:
css Copy code @media screen and (max-width: 375px) { /* CSS rules for screens with a maximum width of 375px */ } or you can simple not add the key word screen , and it applies to all devices.
and also you dont need to add quotes font-family: 'Young serif', sans-serif; you can simply write it like this font-family: Young serif, sans-serif;
And for the table, I used a bootstrap class and just used the css to remove the border for the last row
0 - @zabdulkadir2Submitted about 1 year ago@Joel12rPosted about 1 year ago
- You can try using the bootstrap grip for better responsiveness. The way I see it in my head should be easier than suing media queries
Marked as helpful0