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 trialyoav green
8,611 PointsWhat's under the hood with Responsive img via bootstrap?
If i would like to get the same effect with writing proper CSS, what would i write in my code?
2 Answers
furkan
11,733 PointsTo get the same effect of giving images responsiveness in CSS, as that shown in the bootstrap video, you need to give images a width of 100%.
#image-one{
width: 100%;
}
I highly recommend reading up on this material to learn more about responsive images:
https://www.w3schools.com/howto/howto_css_image_responsive.asp
yoav green
8,611 Pointsthanks alot