Programming Tips - CSS: Quick and dirty responsive sized images without a framework

Date: 2023jun15 Language: html Keywords: Bootstrap, easy Q. CSS: Quick and dirty responsive sized images without a framework A. Use max-width:100% and height:auto like this:
<img src='picture.jpg' style='max-width:100%; height:auto;'>
Add border-radius:1em; for rounded corners