Use CSS text-indent property.
Simple example here:
p{
text-indent: 20px;
}
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.
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}
To define the color of the text w/ CSS, it is {color:[color of text];} Ex.: body{color:#0000ff;}
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.
You can write a text box in CSS styles. Just place the text styles to whatever you want in the input tag.
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.
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
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.
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 '&nbsp;' before the first word.
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.
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.
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}
<style type="text/css> line-space: #px; </style> I think that's it
To define the color of the text w/ CSS, it is {color:[color of text];} Ex.: body{color:#0000ff;}
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.
You can write a text box in CSS styles. Just place the text styles to whatever you want in the input tag.
Regarding web design, there are two options: 1. By using CSS: text-decoration:line-through 2. By using HTML: <strike></strike>