Result Size: 625 x 664
x
 
<!DOCTYPE html>
<html>
<title>W3.CSS</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<body>
<div class="w3-container">
  <h2>Card Dropdowns</h2>
  <p>Move the mouse over "London" or "Tokyo":</p>
  <div class="w3-dropdown-hover">London
    <div class="w3-dropdown-content w3-card-4" style="width:250px">
      <img src="img_london.jpg" alt="London" style="width:100%">
      <div class="w3-container">
        <p>London is the capital city of England.</p>
        <p>It is the most populous city in the UK.</p>
      </div>
    </div>
  </div>
  
  <div class="w3-dropdown-hover">Tokyo
    <div class="w3-dropdown-content w3-card-4" style="width:250px">
      <img src="img_tokyo.jpg" alt="Tokyo" style="width:100%">
      <div class="w3-container">
        <p>Tokyo is the capital city of Japan.</p>
        <p>13 million inhabitants.</p>
      </div>
    </div>
  </div>
</div>
</body>
</html>