answersLogoWhite

0


Best Answer

There is no tag to do this, but you can wrap a span tag around the first word and use CSS to add padding or you can simply add several ' ' before the first word.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What HTML tag is used to indent the first line of text?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Are indents on a Word document measured from the edge of the page?

No. They are from the margin. A regular indent will have the first line the amount of the indent further in than the rest of text, which be at the margin. A hanging indent will have the first line at the margin and the rest of the text in by the amount of the indent.No. They are from the margin. A regular indent will have the first line the amount of the indent further in than the rest of text, which be at the margin. A hanging indent will have the first line at the margin and the rest of the text in by the amount of the indent.No. They are from the margin. A regular indent will have the first line the amount of the indent further in than the rest of text, which be at the margin. A hanging indent will have the first line at the margin and the rest of the text in by the amount of the indent.No. They are from the margin. A regular indent will have the first line the amount of the indent further in than the rest of text, which be at the margin. A hanging indent will have the first line at the margin and the rest of the text in by the amount of the indent.No. They are from the margin. A regular indent will have the first line the amount of the indent further in than the rest of text, which be at the margin. A hanging indent will have the first line at the margin and the rest of the text in by the amount of the indent.No. They are from the margin. A regular indent will have the first line the amount of the indent further in than the rest of text, which be at the margin. A hanging indent will have the first line at the margin and the rest of the text in by the amount of the indent.No. They are from the margin. A regular indent will have the first line the amount of the indent further in than the rest of text, which be at the margin. A hanging indent will have the first line at the margin and the rest of the text in by the amount of the indent.No. They are from the margin. A regular indent will have the first line the amount of the indent further in than the rest of text, which be at the margin. A hanging indent will have the first line at the margin and the rest of the text in by the amount of the indent.No. They are from the margin. A regular indent will have the first line the amount of the indent further in than the rest of text, which be at the margin. A hanging indent will have the first line at the margin and the rest of the text in by the amount of the indent.No. They are from the margin. A regular indent will have the first line the amount of the indent further in than the rest of text, which be at the margin. A hanging indent will have the first line at the margin and the rest of the text in by the amount of the indent.No. They are from the margin. A regular indent will have the first line the amount of the indent further in than the rest of text, which be at the margin. A hanging indent will have the first line at the margin and the rest of the text in by the amount of the indent.


How do you indent the first line of a text css?

Use CSS text-indent property. Simple example here: p{ text-indent: 20px; }


When is a hanging indent useful?

Alternatively referred to as a negative indent, a hanging indent is an indent that indents all text except the first line. useful for paragraphs


What you can use to indent just the first line of paragraph?

You can use the CSS property "text-indent" to indent just the first line of a paragraph. Set the value of "text-indent" to the desired indent, typically in pixels or percentages. This will only affect the first line of the paragraph while leaving the subsequent lines unaffected.


What is the difference between text alignment and indentation?

Text alignment is a blanket format applied to a specific selection of text in relation to which margin the text is flush with (center, right, left, justified) Indentation is applied to a selection of text after alignment. It is the space between the left margin and the first letter of each line. It may be applied to the first line in a paragraph (standard indent) or to a works cited page to separate entries where the first line is not indented and the rest are (hanging indent).


How can you insert 10 pixels of space between a left side align?

you can either use margin-left: 10px; padding-left: 10px; or text-indent: 10px; however text-indent will only indent the first line of text, for differences between padding and margin lookup css box-model


What is the name of the button that displays at the left side of the ruler?

It is the alignment button. It can be used to shift text in your document. You can use it to set the indent of the first line, the whole paragraph, or the hanging indent.


What XHTML tag is used to indent a paragraph of text?

To indent a paragraph of text using XHTML, simply enclose the paragraph in an opening and closing <blockquote> tag. the <blockquote> tag is used for quoted text, not for indenting text. If you want to indent text you need to use the text-indent with CSS.


How do you indent HTML?

There are many methods you can use to indent a paragraph using HTML styles. Here is an example of one method: <p style="text-indent: 50px;"></p>. This will indent the first line of a paragraph 50 pixels. You can change it to whatever intent space you like.


How do you create a hanging indent using shortcut keys?

To create a hanging indent using shortcut keys, you can first select the text you want to indent. Then, press "Ctrl" + "T" on a Windows computer or "Command" + "T" on a Mac. This will apply a hanging indent to the selected text.


Do you need to indent when writing a mla?

The actual items of an APA format paper must be indented. Indentation from the first line is essential. If the listed source goes past the first line, a hanging indent should be used on the second line by pressing the TAB key.


What does the HTML tag br mean?

<BR> tag stands for line break. This is the first line <BR> This is the second line In HTML the above code will get displayed as: This is the first line This is the second line