- I need a help with the resources to learn developing mobile responsive websites.
Samuel
@sam6856All comments
- @shank-codesSubmitted over 1 year ago@sam6856Posted over 1 year ago
Hello. I would recommend w3schools responsive web design It goes through the basics of using html and css in order to create responsive websites. I hope that helps
Marked as helpful1 - @MoonaGitSubmitted over 1 year ago
Hello ! I would like some feedback concerning the circle on the left and the numbers on the right. Thanks !
@sam6856Posted over 1 year agoHello, I notice that for the circle on the left, you have
display: inline-block; justify-content: center; align-items: center;
I must say that justify-content and align-items can only be used when using
display: flex
ordisplay:inline-flex
I hope this helps
Marked as helpful1 - @varshi158Submitted over 1 year ago
Can I display the same design for a mobile layout by making changes to the same code I used to design for the desktop layout? If yes, how?
@sam6856Posted over 1 year agoyes you can; You will want to use css media query, something like @media screen and (max-width: 500px) { //css code for mobile phone goes here }; I hope that helps
0