Live data from Hacker News

Bootstrap 3.1 released

github.com

41–50 of 138 posts

Re: Bootstrap 3.1 released

#42

Love the Sass port. My one complaint with Bootstrap is that its grid system uses float instead of inline-block. Is it easy to use a different grid system with Bootstrap without breaking its other components?

You should check out Pure's grid system. Works well with Bootstrap. http://purecss.io

Disclaimer: I helped write Pure

Re: Bootstrap 3.1 released

#43
Question: If you were developing a large, content-driven site, would you bother with Bootstrap?

Bootstrap seemed a bit like overkill when I had to use it in my old job. The CSS and markup seemed excessive, and the strict JS was kind of a pain to deal with.

I know I can get something that looks half-decent up and running quickly with it, but if I'm not planning to take any visual design from it, is there much of an advantage? Is Bootstrap's grid so great in any way that I really should be using it?

Re: Bootstrap 3.1 released

#44
post #19
post #8

Official Sass port. That's pretty big news.

The main reason I chose LESS was because of bootstrap support, I'm extremely happy with it and can't believe I didn't start with it before. I'll see how this port goes, but I've read some good stuff about SASS: http://css-tricks.com/sass-vs-less/ Any other points anyone can make for SASS against LESS?

I think since that article came out sass included a new very nice feature in the form of mixins[0].

Also, Compass[1] is awesome when working with sass, but I don't know if there is a less equivalent.

[0]http://sass-lang.com/guide#6

[1]http://compass-style.org/

Re: Bootstrap 3.1 released

#45
post #38

Earlier quoted context omitted.

In the examples here, under custom components: http://getbootstrap.com/getting-started/#examples

Am I missing something, or do they minify the example code? Why do they do that? Is there an easier to copy/edit version somewhere?

[deleted]

Re: Bootstrap 3.1 released

#46

Question: If you were developing a large, content-driven site, would you bother with Bootstrap? Bootstrap seemed a bit like overkill when I had to use it in my old job. The CSS and markup seemed excessive, and the strict JS was kind of a pain to deal with. I know I can get something that looks half-decent up and running quickly with it, but if I'm not planning to take any visual design from it, is there much of an ad…

Bootstrap 3 is much nicer to use than previous versions, if that's what you were using in the past. Each element is more of a barebones styling to it, which makes it easier to get what you want out of them (such as buttons). I spent a lot of time in previous versions of bootstrap just stripping out text-shadows, border-radius, gradients, and more just to get it back to a basic component.

The grid in the Boostrap 3 is pretty useful if your requirements are for a responsive layout. It really makes it pretty simple to get things going, but does pollute your html with a lot of cruft as you sometimes need to define each size within a single class attribute.

One other thing I've found is that it makes the site more maintainable, as it's easier for others to understand your CSS and layouts. It's the equivalent to being able to hire a Java programmer that knows the Spring Framework (they're plentiful, and usually know enough to not break things). The same is the case for Bootstrap. By having a common and popular framework, you have more developers that can jump right into your front-end quickly.

Also, it's easy enough to customize[1] to get only what you need. If all you need is the grids, just remove everything else. No need for the js components.

[1] http://getbootstrap.com/customize/

Re: Bootstrap 3.1 released

#47

Question: If you were developing a large, content-driven site, would you bother with Bootstrap? Bootstrap seemed a bit like overkill when I had to use it in my old job. The CSS and markup seemed excessive, and the strict JS was kind of a pain to deal with. I know I can get something that looks half-decent up and running quickly with it, but if I'm not planning to take any visual design from it, is there much of an ad…

What's a good alternative?

Re: Bootstrap 3.1 released

#50

Question: If you were developing a large, content-driven site, would you bother with Bootstrap? Bootstrap seemed a bit like overkill when I had to use it in my old job. The CSS and markup seemed excessive, and the strict JS was kind of a pain to deal with. I know I can get something that looks half-decent up and running quickly with it, but if I'm not planning to take any visual design from it, is there much of an ad…

Answer: Don't bother for large websites.

Get normalize.css

If you really need grids, you can get a lighter framework.

Post reply on HN