Lesson: Responsive Design with Bootstrap
Make Images Mobile Responsive
First, add a new image below the existing one. Set its src
attribute to https://bit.ly/fcc-running-cats
.
It would be great if this image could be exactly the width of our phone's screen.
Fortunately, with Bootstrap, all we need to do is add the img-responsive
class to your image. Do this, and the image should perfectly fit the width of your page.
You should have a total of two images.
Your new image should be below your old one and have the class
img-responsive
. Your new image should not have the class
smaller-image
. Your new image should have a
src
of https://bit.ly/fcc-running-cats
. Make sure your new
img
element has a closing angle bracket. href="https://fonts.googleapis.com/css?family=Lobster" rel="stylesheet" type="text/css"
.red-text {
color: red;
}
h2 {
font-family: Lobster, Monospace;
}
p {
font-size: 16px;
font-family: Monospace;
}
.thick-green-border {
border-color: green;
border-width: 10px;
border-style: solid;
border-radius: 50%;
}
.smaller-image {
width: 100px;
}
class="container-fluid"
class="red-text"CatPhotoApp
Click here for href="#"cat photos.
href="#" class="smaller-image thick-green-border" src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back. "
Things cats love:
cat nip
Correct, congratulations!
Next problem: Center Text with Bootstrap
Try again
The content on this page is licensed under Attribution-ShareAlike 4.0 International. Original authors: freeCodeCamp, the content was modified.