Navjot Pawera wrote:
> <snip>
>> Unless it's just for the first paragraph then you will need the p
>> class="first-line"
>
>>     #description p.first-line {
>>       text-indent : 3em;
>>     }
>>
>>
> In what case would we need to "indent the first line" ?
> Doesn't indenting mean exactly the same thing ??

What I mean is if he wants just the first line of a *multi-paragraph* 
container indented, then it'd be best to apply the class.

<div id="description">
  <p class='first-line">Para one</p> <!-- only this para indented -->
  <p>Para two</p>
  <p>Para three</p>
</div>

    #description p.first-line {
      text-indent : 3em;
    }

If *all* paragraphs were to be indented OR it was just a single paragraph in 
that container, then the class wouldn't be needed.

    #description p {
      text-indent : 3em;
    }

I didn't know for sure what he wanted to do so I offered both options.

See what I'm saying now?

Respectfully,
Mike Cherim
http://green-beast.com/



*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************



*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************

Reply via email to