1

I'm new to all of this. I'm learning bootstrap 3 and during the process I've encountered a problem.

I'm using the <div class="row"> and <div class="col-md-4> to make a 3 symmetrical column with 3 images + 1 little description for each of them.

Here's my issue: I don't know how to resize the images in my html file... I just want to make them smaller so they can all fit in my column.

Can't post my code... its too long I guess

1
  • 2
    try class="img-responsive" Commented Aug 18, 2014 at 23:04

1 Answer 1

2

Try this:

    <div class="row">
        <div class="col-md-4">
            <img class="img-responsive" src="layouts/layouts.PNG" />
            <p>Some description</p>
        </div>
        <div class="col-md-4">
            <img class="img-responsive" src="layouts/layouts.PNG" />
            <p>Some description</p>
        </div>
        <div class="col-md-4">
            <img class="img-responsive" src="layouts/layouts.PNG" />
            <p>Some description</p>
        </div>
    </div>
Sign up to request clarification or add additional context in comments.

1 Comment

The Comment of "Dan" is executed here.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.