Selects every element whose href attribute value contains the substring "java" with CSS


Use the [attribute*=”value”] selector to select elements whose attribute value contains a specified value.

You can try to run the following code to implement the CSS [attribute*="value"] selector,

Example

Live Demo

<!DOCTYPE html>
<html>
   <head>
      <style>
         [href* = java] {
            border: 5px solid orange;
            border-radius: 5px;
         }
      </style>
   </head>
   <body>
      <a href = "https://www.tutorialspoint.com/php/index.htm">PHP Tutorial</a>
      <a href = "https://tutorialspoint.com/java/index.htm">Java Tutorial</a>
   </body>
</html>

Updated on: 24-Jun-2020

450 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements