attr() CSS函數使用CSS傳回所選元素的屬性值
#您可以嘗試執行下列程式碼來實作CSS 中的attr() 函數
即時示範
<!DOCTYPE html> <html> <head> <style> a:before {content: " (" attr(href) ")";} </style> </head> <body> <h2>Information Resource</h2> <p> Resource:<a href="https://www.qries.com">Welcome to Qries </a> </p> </body> </html>
以上是使用 CSS 傳回所選元素的屬性值的詳細內容。更多資訊請關注PHP中文網其他相關文章!