UPPERCASE and lowercase IN CSS
UPPERCASE and lowercase
the property
text-transform
, which can switch between upper- and lowercase letters. This can also be used to create an effect for links:
a:hover {
text-transform: uppercase;
font-weight:bold;
color:blue;
background-color:yellow;
}
Comments
Post a Comment