+2 votes
in Class 12 by kratos

Write the CSS code to:

(i) Apply 50px indentation to all text paragraphs marked with

.

(ii) Make the text in the paragraphs marked with

tag “italics”.

1 Answer

+1 vote
by kratos
 
Best answer

P{

text-indent: 50px;

font-style: italic;

}

...