Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Breakpoints Viewports

  • 01-09-2018 12:20pm
    #1
    Registered Users, Registered Users 2 Posts: 8,444 ✭✭✭


    How many Breakpoints/Viewports would a Web Developer use when creating a responsive website from scratch, and, what are the most common sizes used?

    "Everybody is a genius. But if you judge a fish by its ability to climb a tree, it will live its whole life believing that it is stupid."



Comments

  • Registered Users, Registered Users 2 Posts: 6,473 ✭✭✭Talisman


    It depends on the project. I would use Bootstrap breakpoints as a starting guideline and then adapt to the project content for smooth transitions.

    The Standard Bootstrap 3.x Breakpoints
    @media all and (max-width: 991px) { ... }
    @media all and (max-width: 768px) { ... }
    @media all and (max-width: 480px) { ... }
    

    The Standard Bootstrap 4.x Breakpoints
    @media all and (max-width: 1199px) { ... } 
    @media all and (max-width: 991px) { ... } 
    @media all and (max-width: 768px) { ... } 
    @media all and (max-width: 575px) { ... }
    


  • Registered Users, Registered Users 2 Posts: 8,444 ✭✭✭Gadgetman496


    So would the 3 x Breakpoints cover Desktop, Tablet & Mobile.

    Whereas the 4 x Breakpoints would cover Desktop, Laptop, Tablet & Mobile, or, is that the basic idea at all?

    "Everybody is a genius. But if you judge a fish by its ability to climb a tree, it will live its whole life believing that it is stupid."



  • Registered Users, Registered Users 2 Posts: 6,473 ✭✭✭Talisman


    You need a minimum of 3 breakpoints -  one for each type of device (mobile, tablet, and desktop).

    If you know the market for which the site is being developed you can use publicised data to help you decide what breakpoints to target.

    Screen Resolution Stats Ireland

    Once you have the website live you can use analytics to track the devices visiting it and alter your breakpoints to improve the experience for the most common screen sizes. How deep into the rabbit hole you wish to go is entirely up to you.


  • Registered Users, Registered Users 2 Posts: 8,444 ✭✭✭Gadgetman496


    That's a handy link, cheers Talisman ;)

    "Everybody is a genius. But if you judge a fish by its ability to climb a tree, it will live its whole life believing that it is stupid."



Advertisement