InterviewSolution
Saved Bookmarks
| 1. |
Write the CSS code to: (i) Apply 50px indentation to all text paragraphs marked with <p>.(ii) Make the text in the paragraphs marked with <p> tag “italics”. |
|
Answer» P{ text-indent: 50px; font-style: italic; } |
|