> Can I set up custom paragraph heights that do not effect the normal <P> tag?
>
> first paragraph
> <p1></p1>
You can't make up HTML tags. You have to use only the HTML tags that are
defined in the HTML language itself. (Even XHTML is not really extensible
in common usage.)
You can make up classes or IDs -- class or id attributes to HTML elements.
Class:
<p class="first">Some text</p>
p.first {...}
Or id:
<div id="sidebar">
<h2>Heading</h2>
<p>Some text</p>
</div>
#sidebar p {...}
(Class "first" and id "sidebar" are examples. You can name your classes
and ids however you choose.)
Larry
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/