Q3. Identify and write the properties with its attributes in CSS.
1. To capitalize the text.
2. To underline the text.
3. To make text font Bold.
4. To make border with dotted line.
Answers
Answered by
1
for capitalize the text using external css:
.text{
text-transform: capitalized;
}
for underline the text using css:
<p> <u> This text is underlined </u></p>
To make the text font bold:
<p> <b> This text is underlined </b></p>
To make the border with dotted line using css:
.div{
border: dotted;
Similar questions