Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
Discussion GroupsGeneralPHPASPPerlColdFusionFlashHTML, CSS, ScriptsBrowsers

Webmaster Forum / HTML, CSS, Scripts / CSS / April 2007



Tip: Looking for answers? Try searching our database.

p + p

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
Kent Feiler - 24 Apr 2007 20:10 GMT
I was using CSS of:
                       p + p {...}

...to indent secondary paragraphs in conversations and descriptive
text. This allows not including a class on every secondary <p> tag, of
which there are often several for each beginning <p>. I just noticed
that while this works fine in FF, it doesn't work at all in IE.

Crap! Is there a way to accomplish this that will work in both IE and
FF? I know, IE should just get with the program, but I don't think I
can wait that long.

Regards,

Kent Feiler
www.KentFeiler.com
Jukka K. Korpela - 24 Apr 2007 21:16 GMT
Scripsit Kent Feiler:

> I was using CSS of:
>                        p + p {...}
>
> ...to indent secondary paragraphs in conversations and descriptive
> text. This allows not including a class on every secondary <p> tag, of
> which there are often several for each beginning <p>.

That's indeed the most logical approach, but...

> I just noticed
> that while this works fine in FF, it doesn't work at all in IE.

Actually, it works in IE 7, but only in Standards Mode (i.e. when you have a
correct doctype declaration at the start of the document).

> Is there a way to accomplish this that will work in both IE and FF?

You could use class attributes but for the paragraphs that do not follow
another paragraphs, i.e. just for the first <p> element in a sequence of
such elements.

Or you could use

p { text-indent: 1.3em; margin: 0; }
h2+p, h3+p, h4+p, h5+p, h6+p, table+p, ul+p, ol+p, dl+p, div+p
  { text-indent: 0; }

That way, IE 6 and older would use text indent for _all_ paragraphs, which
is perhaps tolerable (I've seen many books and serials that use such style),
and newer browsers would indent only paragraphs that do not follow a heading
or list or ... (you may need to tune the list; the above is just a sketch).

Signature

Jukka K. Korpela ("Yucca")
http://www.cs.tut.fi/~jkorpela/

Kent Feiler - 26 Apr 2007 03:31 GMT
Scripsit Kent Feiler:

> I was using CSS of:
>                        p + p {...}
>
> ...to indent secondary paragraphs in conversations and descriptive
> text. This allows not including a class on every secondary <p> tag, of
> which there are often several for each beginning <p>.

That's indeed the most logical approach, but...

> I just noticed
> that while this works fine in FF, it doesn't work at all in IE.

Actually, it works in IE 7, but only in Standards Mode (i.e. when you
have a correct doctype declaration at the start of the document).

> Is there a way to accomplish this that will work in both IE and FF?

You could use class attributes but for the paragraphs that do not
follow another paragraphs, i.e. just for the first <p> element in a
sequence of such elements.

Or you could use

p { text-indent: 1.3em; margin: 0; }
h2+p, h3+p, h4+p, h5+p, h6+p, table+p, ul+p, ol+p, dl+p, div+p
  { text-indent: 0; }

That way, IE 6 and older would use text indent for _all_ paragraphs,
which is perhaps tolerable (I've seen many books and serials that use
such style), and newer browsers would indent only paragraphs that do
not follow a heading or list or ... (you may need to tune the list;
the above is just a sketch).
------------------------------------------------------------------------

Nice idea! Although the guy who was the master of style when HTML and
CSS were just alphabet soup, William J. Strunk in "The Elements of
Style", might complain a bit. Indent-all-paragraphs is way better than
"engineering paragraphs" but it still misses something. The unindented
paragraph (preceeded by blank line) is a kind of reset button, I'd
hate to lose it.

Maybe I should just forget about old versions of IE, but I dunno, it
seems right to at least go back to Current - 1.

Regards,

Kent Feiler
www.KentFeiler.com
Jukka K. Korpela - 26 Apr 2007 08:54 GMT
Scripsit Kent Feiler:

[ first quoting me ]
> Or you could use
>
[quoted text clipped - 12 lines]
> CSS were just alphabet soup, William J. Strunk in "The Elements of
> Style", might complain a bit.

Maybe Strunk would have something to complain, but my copy of the book,
fourth edition, with revisions by E. B. White,
a) does not seem to say anything explicit about the topic (though I've only
read the book once and now took a quick look at it)
b) itself indents paragraphs after low-level headings (which themselves are
indented, too) and lists, as well as after vertical spacing that indicates a
major division in text - and even _in_ examples set in blockquote style and
_after_ such an example, despite that fact that block indentation and
vertical margins make that unnecessary.
(It doesn't indent the first paragraph in a section, though, and it presents
the first few words of such a paragraph in small caps.)

I'm not saying that indenting all or almost all paragraphs is good style.
I'm just saying that it can't be regarded as a stylistic catastrophe.

> Indent-all-paragraphs is way better than
> "engineering paragraphs" but it still misses something. The unindented
> paragraph (preceeded by blank line) is a kind of reset button, I'd
> hate to lose it.

That's probably still the most common view among typographers. If you regard
it as important enough to implement that style in a manner that works on IE
6 (and older) too, you can use class attributes for paragraphs that should
not be indented (and should perhaps have top margin, unless the preceding
element's bottom margin doesn't suffice). After all, normally just a
minority of paragraphs would need the class attribute.

Signature

Jukka K. Korpela ("Yucca")
http://www.cs.tut.fi/~jkorpela/

 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2009 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.