使用 HTML 中的 cords 屬性來設定 HTML 影像地圖中區域的座標。
您可以嘗試執行以下程式碼來實作cords屬性 -
<!DOCTYPE html> <html> <head> <title>HTML coords attribute</title> </head> <body> <img src = "/images/html.gif" alt = "HTML Map" border = "0" usemap = "#html"/> <map name = "html"> <area shape = "circle" coords = "154,150,59" href = "about/about_team.htm" alt = "Team" target = "_self" /> </map> </body> </html>
以上是在HTML中設定影像映射區域的座標?的詳細內容。更多資訊請關注PHP中文網其他相關文章!