I have the following:
input.bg:hover {
...
}
I’m using the above following: <input type="submit" class="bg" value="ttttttt"/>
now how to modify the class, so I can use <input type="submit" class="bg-small" value="cccccccc"/> ?
I need to add .bg-small into this css class, but I don’t know how. I’ve been trying the following:
input.bg:hover .bg-small:hover {
...
}
1 Answer