Clipboard-Landing-Page (Bootstrap, CSS, HTML, Animate.css)
Design comparison
Solution retrospective
I experienced some difficulty in making it responsive or compatible for all screen sizes, and I experienced issues with Bootstrap interference however that was fixed. I could not make the social logos or icons have a hover effect of green or the given color.
I'm unsure of the hover states since I am still trying to perfect it.
I have a question, how can I make it responsive or compatible in all screen sizes without too much effort or any way of using Media Queries?
Community feedback
- @HassiaiPosted over 1 year ago
Give the main, header and footer a width of 80vw and margin: 0 auto or give it a max-width of 1440px, a width of 80% and margin: 0 auto, for a responsive content.
You can change the percentage width or vw values in the media query
main, header, footer{ width: 80vw; margin: 0 auto; }
or
main, footer, header{ max-width:1440px; width of 80%; margin: 0 auto; }
Hope am helpful.
Well done for completing this challenge. HAPPY CODING
Marked as helpful1@Wagon706Posted over 1 year ago@Hassiai I've been recently trying to figure out to make my projects really responsive, this will help. Thank you!
1 - @0xabdulkhaliqPosted over 1 year ago
Hello there 👋. Congratulations on successfully completing the challenge! 🎉
- I have other recommendations regarding your code that I believe will be of great interest to you.
DECORATIVE SVG'S ♨️:
- The
alt
attribute is used to provide alternative text for images in HTML documents. Thealt
attribute is used by screen readers to describe the image to visually impaired users, which is essential for web accessibility.
- Now, when it comes to decorative
SVGs
, they are used purely for aesthetic purposes and do not convey any important information or functionality to the user.
- Since these images do not convey any important information or functionality, there is no need for an
alt
attribute.
- So feel free to set the
alt
attribute as""
for decorativesvg's
, becausealt=""
will be skipped by screen readers they will consider the image as decoration
Example:
<img src="images/decorative.svg" alt="">
<img class="preview-icon" src="/images/icon-preview.svg" alt="preview"> 👇 <img class="preview-icon" src="/images/icon-preview.svg" alt="">
.
I hope you find this helpful 😄 Above all, the solution you submitted is great !
Happy coding!
Marked as helpful0 - @Wagon706Posted over 1 year ago
IMPORTANT
Make sure to change your screen size by using Inspect to these respected widths and heights:
Desktop View: 1440x3808
Mobile View: 375x5205
The number on the left is the width, the number after the "x" is the height.
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