亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

CSS ???? ??

CSS ???? ??

CSS? ???? ???? ?? ??? ? ???? ??? ???? ??? ??????.


?? ???? ??

??? ?? ?? ???? ??? ???? ??? ?????.

Example

<!DOCTYPE html>
<html>
<head>
    <title> PHP中文網(wǎng)(php.cn)</title>
    <meta charset="utf-8">
    <style>
        .dropdown {
            position: relative;
            display: inline-block;
        }
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #f9f9f9;
            min-width: 160px;
            box-shadow: 0px 8px 16px 0px rgb(83, 251, 185);
            padding: 12px 16px;
        }
        .dropdown:hover .dropdown-content {
            display: block;
        }
    </style>
</head>
<body>

<div class="dropdown">
    <span>鼠標移動到我這!</span>
    <div class="dropdown-content">
        <p> PHP中文網(wǎng)(php.cn)</p>
        <p>ipnx.cn</p>
    </div>
</div>

</body>
</html>

????? ???? ??? ???


?? ??

HTML ??:

?? HTM ??? ???? ??? ?? ???? ??? ? ? ????. ??

???? ??
||
<!DOCTYPE html> <html> <head> <title>PHP中文網(wǎng)(php.cn)</title> <meta charset="utf-8"> <style> .dropdown { position: relative; display: inline-block; } .dropdown-content { display: none; position: absolute; background-color: #f9f9f9; min-width: 160px; box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); } .dropdown:hover .dropdown-content { display: block; } .desc { padding: 15px; text-align: center; } </style> </head> <body> <h2>下拉圖片</h2> <p>移動鼠標到圖片上顯示下拉內(nèi)容。</p> <div class="dropdown"> <img src="https://img.php.cn/upload/course/000/000/006/580837363b987802.jpg" alt="Trolltunga Norway" width="100" height="50"> <div class="dropdown-content"> <img src="https://img.php.cn/upload/course/000/000/006/580837363b987802.jpg" alt="Trolltunga Norway" width="400" height="200"> <div class="desc">PHP中文網(wǎng)(php.cn)</div> </div> </div> </body> </html>