Answers for "which css property is used to make font small-caps?"

CSS
1

css font variant small caps

p.small {
  font-variant: small-caps;
}
Posted by: Guest on March-10-2022
7

all text in caps using css

.class_name {
  text-transform: none|capitalize|uppercase|lowercase|initial|inherit;
}
Posted by: Guest on July-14-2020

Browse Popular Code Answers by Language