Using to CSS Tags

liunx

Guest
Hi,

I want to use 2 CSS classes

<li><a href=http://www.webdeveloper.com/forum/archive/index.php/"index.php" id="here">Home</a></li>

That link implements 1, how would I add one that said id="left" and id"here" are the same time?


Thanks and have a nice day!Those aren't classes those are ids. You can only have one id and only one thing can have any one id at a time. However, any one thing can have several classes:<li><a href=http://www.webdeveloper.com/forum/archive/index.php/"index.php" class="left here">Home</a></li>You might find this post a good read about when to use IDs, classes and style attributes: <!-- m --><a class="postlink" href="http://www.webdeveloper.com/forum/showthread.php?t=85247#post464007I">http://www.webdeveloper.com/forum/showt ... ost464007I</a><!-- m --> guess where i'm going with this is on the footer of a webpage

The ID is set to footer
and in the CSS the footer says align the text right

I want to have a portion of the text on the left and the other portion on the rightUse floats.

<!-- m --><a class="postlink" href="http://css.maxdesign.com.au/floatutorial/index.htm">http://css.maxdesign.com.au/floatutorial/index.htm</a><!-- m -->
<!-- m --><a class="postlink" href="http://www.brunildo.org/test/#flo">http://www.brunildo.org/test/#flo</a><!-- m -->

<!-- m --><a class="postlink" href="http://garyblue.port5.com/webdev/floatdemo.html">http://garyblue.port5.com/webdev/floatdemo.html</a><!-- m -->
<!-- m --><a class="postlink" href="http://www.csscreator.com/attributes/containedfloat.php">http://www.csscreator.com/attributes/containedfloat.php</a><!-- m -->
<!-- m --><a class="postlink" href="http://www.positioniseverything.net/easyclearing.html">http://www.positioniseverything.net/easyclearing.html</a><!-- m -->
<!-- m --><a class="postlink" href="http://www.quirksmode.org/css/clearing.html">http://www.quirksmode.org/css/clearing.html</a><!-- m -->
<!-- m --><a class="postlink" href="http://css-discuss.incutio.com/?page=ClearingSpace">http://css-discuss.incutio.com/?page=ClearingSpace</a><!-- m -->

Curing Float Drops and Wraps (<!-- m --><a class="postlink" href="http://nemesis1.f2o.org/aarchive?id=11">http://nemesis1.f2o.org/aarchive?id=11</a><!-- m -->)
 
Back
Top