Computer >> Computer tutorials >  >> Programming >> CSS

Usage of attr() CSS function


The attr() CSS function returns the value of an attribute of the selected element using CSS

You can try to run the following code to implement the attr() function in CSS

Example

<!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>