Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialBryan Cortez
Front End Web Development Techdegree Student 6,176 PointsUsing [Margin-right: auto] instead
I was able to create the same effect by doing: .name { margin-right: auto; } Does it matter which method you use? Or does it just depend if you want the nav bar to line up with the margins of your page?
1 Answer
Tobechukwu Obitube
6,661 PointsHi Bryan, While it may be possible to get certain desired outputs using different methods, there should be a very good consideration of how browsers across most platforms interpret the method we use when writing code. However, best practices are always advised in order to avoid different rendering outputs across browser platforms. This is one of the reasons why websites like caniuse.com was developed to help developer know more about methods and rules to use in their software development journey. Therefore, it is a good practice to ensure that best practices are adhered to so that there will be conformity with the rules used by browser manufacturers, in order to get the desired output desired across multiple platforms.
Best regards, Tobechukwu