Answers for "which of the following syntax is correct in css to make each word of a sentence start with a capital letter? a. text-style : capital; b. transform : capitalize; c. text-transform : capital; d. text-transform : capitalize;"

CSS
3

css all uppercase to capitalize

.link {
  text-transform: lowercase;
 
}

.link::first-line {
  text-transform: capitalize;
}
Posted by: Guest on May-23-2020
0

how to change the text style to capitalise in msword

press SHIFT + F3 until the case you want is applied.
Posted by: Guest on May-02-2021

Code answers related to "which of the following syntax is correct in css to make each word of a sentence start with a capital letter? a. text-style : capital; b. transform : capitalize; c. text-transform : capital; d. text-transform : capitalize;"

Browse Popular Code Answers by Language