I want my img element to be both rounded and responsive. How can I do that?
I tried:
<img src = "someimage.jpg" class = "img-rounded" class = "img-responsive"/>
I want my img element to be both rounded and responsive. How can I do that?
I tried:
<img src = "someimage.jpg" class = "img-rounded" class = "img-responsive"/>
Put both in one class
attribute with a space in between
<img src="someimage.jpg" class="img-rounded img-responsive" />