Hi,
I have the following html and css code bits.
When I hover over the family name it is changed to upper case. This much is working. Like this
from 'Johnson Pat' to 'JOHNSON Pat'
I want to achieve the same result if I hover over any part of the string 'Johnson Pat', not just over the word 'Johnson'. That is if I hover over the word ' Pat' (including the space) it should change to 'JOHNSON Pat'.
Is this possible ??
I would appreciate any help
Thanks
I have the following html and css code bits.
Code:
<td><span class="familyname">Johnson</span> Pat</td>
Code:
.familyname:hover {
text-decoration: none;
text-transform: uppercase;
}
from 'Johnson Pat' to 'JOHNSON Pat'
I want to achieve the same result if I hover over any part of the string 'Johnson Pat', not just over the word 'Johnson'. That is if I hover over the word ' Pat' (including the space) it should change to 'JOHNSON Pat'.
Is this possible ??
I would appreciate any help
Thanks
Comment