Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

add class on hover css

/* example: your html code is like this: 
<h2 class="firstname">Firstname </h2>
<p class="secondname">Secondname </p>
/*

h2.firstname:hover {
  background-color: yellow;
}

p.secondname:hover {
  background-color: blue;
}
 
PREVIOUS NEXT
Tagged: #add #class #hover #css
ADD COMMENT
Topic
Name
8+6 =