Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Expand DIV as Wide as its Contents using CSS</title> <style> .wrapper{ display: inline-block; border: 25px solid black; margin: 20px; } img{ border: 20px solid white; } </style> </head> <body> <div class="wrapper"> <img src="/examples/images/sky.jpg" width="300" alt="Cloudy Sky"> </div> </body> </html>