If you are experiencing a problem where you are using bootstrap but on mobile the responsiveness is not working great. Then you are missing something. And that is:
<meta name="viewport" content="width=device-width, initial-scale=1.0">
Add this in the <head> </head> and your problem will be resolved.
If you want desktop site to be visible on all devices you will need to change it to:
<meta name="viewport" content="width=1024">
Hope this was helpful.
<meta name="viewport" content="width=device-width, initial-scale=1.0">
Add this in the <head> </head> and your problem will be resolved.
If you want desktop site to be visible on all devices you will need to change it to:
<meta name="viewport" content="width=1024">
Hope this was helpful.
Comments
Post a Comment