Hanging Indents?

liunx

Guest
Is there any way to set up a hanging indent (the first line is normal with all subsequent lines indented x-amount)?A little thinking outside the box, and your good to go:

<style type="text/css">
p {
padding-left: 20px;
text-indent: -20px;
}
</style>Thanks Pyro, brilliant as alwaysYou are very welcome. :)
 
Back
Top