Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is the media grid class gone from Twitter bootstrap?

I'm trying to use the media grid class and its just showing up as an unordered list. I did a search in the bootstrap.css and can't find media-grid. Or is there a new method to achieve the media grid look? Thanks

  <!--Media grid-->
      <ul class="media-grid">
        <li>
            <a href="#">
                <img src="http://placehold.it/290x200" />
            </a>
        </li>
        <li>
            <a href="#">
                <img src="http://placehold.it/290x200" />

            </a>
        </li>
        <li>
            <a href="#">
                <img src="http://placehold.it/290x200" />
            </a>
        </li>

      <!--media grid-->
like image 729
jfoutch Avatar asked Nov 17 '12 00:11

jfoutch


People also ask

Is grid part of Bootstrap?

Grid System: Bootstrap Grid System allows up to 12 columns across the page. You can use each of them individually or merge them together for wider columns. You can use all combinations of values summing up to 12. You can use 12 columns each of width 1, or use 4 columns each of width 3 or any other combination.

Can you use media query in Bootstrap?

Since Bootstrap is developed to be mobile first, we use a handful of media queries to create sensible breakpoints for our layouts and interfaces. These breakpoints are mostly based on minimum viewport widths and allow us to scale up elements as the viewport changes.

Does twitter own Bootstrap?

Originally created by a designer and a developer at Twitter, Bootstrap has become one of the most popular front-end frameworks and open source projects in the world. Bootstrap was created at Twitter in mid-2010 by @mdo and @fat. Prior to being an open-sourced framework, Bootstrap was known as Twitter Blueprint.


1 Answers

I found the answer, .media-grid has changed to .thumbnails.

like image 157
jfoutch Avatar answered Oct 22 '22 05:10

jfoutch