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 trial

CSS Bootstrap 4 Basics (Retired) Using Bootstrap Components Adding Buttons and Button Groups

Sandra Vu
Sandra Vu
3,525 Points

Class btn-outline-info doesnt work. All of the other outline classes do not work either. Anyone?

I tested all button classes. Only the "outline" one do not work

Jason Anders
Jason Anders
Treehouse Moderator 145,858 Points

Without seeing your code or your results, it's very hard to troubleshoot. I will ask, however, are you using Bootstrap 4 specifically? There have been some students trying to do this course with Bootstrap 3, which will result in errors.

6 Answers

Alan McClenaghan
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Alan McClenaghan
Full Stack JavaScript Techdegree Graduate 56,500 Points

This if the code I used to achieve the same effect as Guil:

<button type="button" class="btn btn-outline-info d-block mx-auto my-3">Don't Miss Out, Register Now</button>

The order of outline and info appears to have been reversed (same with the other button classes) and center-block has been dropped altogether.

d-block moves the button onto the next line and mx-auto (not m-x-auto as stated elsewhere) centers the button.

my-3 adds the margin to the top and bottom (not m-y-3 as stated by Guil as the first dash also seems to have been dropped from the Bootstrap 4 specs).

I hope this helps.

Sandra Vu
Sandra Vu
3,525 Points

Hi Alan

Thanks for your answer. How do you usually look up Bootstrap references? Their website is not really easy to find the right information that one needs (esp for a beginner).

Alan, How did you figure this out?!

That worked for me.

Thanks very much!

Jacob Herrington
Jacob Herrington
15,835 Points

Seeing your code would allow me to give a more precise answer, but here are my suspicions:

  • Verify that you are using Bootstrap 4 and not Bootstrap 3 -> http://v4-alpha.getbootstrap.com/
  • Check your HTML, are you assigning the .btn class before the .btn-outline-* class
  • Check for all closing and opening tags in the entire document, missing one before your button element might be causing this issue.

Here is the correct syntax for each according to the documentation:

<button type="button" class="btn btn-outline-primary">Primary</button>
<button type="button" class="btn btn-outline-secondary">Secondary</button>
<button type="button" class="btn btn-outline-success">Success</button>
<button type="button" class="btn btn-outline-info">Info</button>
<button type="button" class="btn btn-outline-warning">Warning</button>
<button type="button" class="btn btn-outline-danger">Danger</button>

Try copy and pasting one of those - if one of those works, you have a syntax error. If one of those doesn't work it could be an error elsewhere in your HTML document or it could be a bug.

Finally, consider that Bootstrap 4 is in alpha and may not be working correctly (I tested this markup in CodePen and JSFiddle and got some weird results).

Let me know if you can share your code and I'd be happy to read through it with you!

Franklyn Roth
Franklyn Roth
16,770 Points

I had this same issue while working on my own computer, not workspaces. I updated the bootstrap CDN to the latest one and it worked fine after that.

http://v4-alpha.getbootstrap.com/getting-started/introduction/#quick-start

Alan McClenaghan
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Alan McClenaghan
Full Stack JavaScript Techdegree Graduate 56,500 Points

Hi Sandra,

Sorry I didn't get back to you earlier – too busy with work.

You're right about the bootstrap site not being easy to navigate. A lot of the coding and documentation has been updated since Guil made the video – the dangers of learning something that is still in development, I guess.

Things have been moved around so that you need to follow a different pathway to find what you need.

I was actually trying to add updated links to the Question section of each video in which there is a broken link, but I can't actually figure out how to get my question in the right section rather than the general discussion board.

If you can enlighten me about that, I'll do my best to post updated links where needed.

Thanks.

Steven Wegner
Steven Wegner
9,351 Points

Based on Alan's comment, I reversed info and outline in the code snippet and that resulted in the desired effect:

<button type="button" class="btn btn-info-outline">Don't Miss Out, Register Now</button>