在 HTML/CSS 中,可以透過多種方法來實現為整個 div 元素建立連結。查詢中指定的要求是為包含在其父 div 中垂直居中的圖像的 div 建立連結。雖然涉及嵌套 div 和內聯樣式的初始解決方案似乎可行,但它與有效的 HTML 編碼標準相衝突。
要解決此問題,有多個選項可用:
`
<br><a href="https://www.php.cn/link/2ca1ce4a65bf5b60c60bd7c4a89a33f9" rel="nofollow" target="_blank"> <pre class="brush:php;toolbar:false"><span style="display: inline-block; height: 235px; width: 184px; border: 2px solid black; text-align: center;"> <img src="myimage.jpg" height="62" width="180"> </span>
此方法可確保影像在父div 內保持垂直居中,父div 現在是包含在錨標記內的內聯塊元素。
`
<br><div id="parentdivimage" style="cursor:pointer;" onclick="window.location='https ://www.php.cn/link/2ca1ce4a65bf5b60c60bd7c4a89a33f9';"> <pre class="brush:php;toolbar:false"><div id="childdivimage" style="position: absolute; top: 50%; height: 62px; margin-top: -31px;"> <img src="myimage.jpg" height="62" width="180"> </div>
在此解決方案中,父div 轉換為響應滑鼠點擊的區塊級元素。單擊時,它會利用 JavaScript 將瀏覽器重定向到所需的 URL。
`
<br><div style="cursor:pointer;"> <pre class="brush:php;toolbar:false"><a href="https://www.php.cn/link/2ca1ce4a65bf5b60c60bd7c4a89a33f9"> <div style="height: 235px; width: 184px; border: 2px solid black; text-align: center;"> <img src="myimage.jpg" height="62" width="180"> </div> </a>
< ;/div>
`
在這種方法中,在錨標記周圍引入了第二個div,並賦予了光標指針樣式。從視覺上看,它的功能與 inline-block 方法類似,但它使用錨標記來處理連結。
以上是如何為包含圖像的整個 HTML Div 建立可點擊的連結?的詳細內容。更多資訊請關注PHP中文網其他相關文章!