answersLogoWhite

0

Use CSS text-indent property.

Simple example here:

p{

text-indent: 20px;

}

User Avatar

Wiki User

11y ago

What else can I help you with?

Related Questions

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.


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 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.


What HTML tag is used to indent the first line of text?

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.


What is the code to indent a prargraph?

To indent a paragraph in HTML, you can use the CSS property "text-indent" and apply it to the paragraph element like this: <p style="text-indent: 20px;">Your paragraph text here</p> You can adjust the value (20px in this example) to control how much the paragraph should be indented.


What are the proporties that make up style?

Properties of CSS style include text-transform, vertical-align, text-align, text-indent, line-height, word-spacing, letter-spacing and text-decoration. Font properties include font-family, font-style, font-weight and font-size.


What the concept lies behind ruleset in css?

Ruleset : Selectors can be attached to other selectors to be identified by ruleset. It has two parts: Selector, e.g. R and declaration {text-indent: 11pt}


What is spacing between lines or text in HTML format called?

<style type="text/css> line-space: #px; </style> I think that's it


What is the CSS property color text?

To define the color of the text w/ CSS, it is {color:[color of text];} Ex.: body{color:#0000ff;}


What do the effects of CSS look like?

Tags that are styled with CSS defining bold text may look like this. Tags that are styled with CSS defining italicized text may look like this. Tags that are styled with CSS defining text that is strike-through'ed may look like this.


How do you write instead of body the text box in css?

You can write a text box in CSS styles. Just place the text styles to whatever you want in the input tag.


How do you put a line through your text?

Regarding web design, there are two options: 1. By using CSS: text-decoration:line-through 2. By using HTML: <strike></strike>