Click to See Complete Forum and Search --> : Quick Dumb Question


burnt1ce85
10-05-2006, 02:42 PM
How do i add a tabbed space to the first line of a <div>?

I tried using :before and :after pseudo-elements but that didnt work.

for example:

#story .firstparagraph:before {
content: "&nbsp; &nbsp;"
}

i even tried content: " " and even content: "THIS DOESNT WORK".

Nothing had an effect.

KDLA
10-05-2006, 02:45 PM
text-indent: 3em;
KDLA