Skip to content
Advertisement

Building responsive footer in ReactJS

I have some issues to figure out how to manage to build a responsive footer. Until now I got this . On normal screen is looking nice but when you switch to the ‘device-toolbar’ (mobile version) of the aplication it’s getting messed up . (paragraphs and icons come under each other) I’ll be glad if I can recieve some help here. Thank you.

[Normal Screen][1] [1]: https://i.stack.imgur.com/HiZNV.jpg [Mobile Screen][2] [2]: https://i.stack.imgur.com/6LKMA.jpg

P.S. I am building my aplication on ReactJS and here is part of my code:

Footer.js

JavaScript
**App.cs**
JavaScript

Advertisement

Answer

Perhaps you could use the following:

JavaScript

This would take a “vertical stacking” approach to the layout, which is a more mobile-friendly approach. This solution also uses a technique based on position:absolute; to place the phone number above the social network buttons.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement