|
|
| What's the tag to indent only the first line of a paragraph |
| Text-indent It's a property, not a tag |
| No i only want the first line of the paragraph indented All i see is regular text indent property Like normally you tab a paragraph In word |
| P { text-indent: 5em; } That would indent the first line |
| Is that css? How do i put that in my code? |
| Add it to your stylesheet |
| I don't see p as a css property |
| P is the html element In this case, the CSS selector says "apply this property to all p elements" |
| Well that doesn't look like html to me I thoguht it would be inside a tag Like <p text-indext=4em> Or soemthing |
| Ikopar as a rule of thumb, no style belongs in your html |
| I just figiured it out Nm |