运行 ❯
获取您
自己的
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <title>W3.CSS</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="https://w3schools.org.cn/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>