<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1018771" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1018771</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/css-4#comment-1110771</link>
    <description> &lt;p&gt;Well, the  tag shouldn&#039;t be used, period. It&#039;s just confusing, and if you want the hyperlinks underlined, that happens by itself.&lt;/p&gt;
&lt;p&gt;Using &lt;em&gt; instead of  and &lt;strong&gt; instead of  is recommended for other viewers, as it provides meaningful markup to text (emphasis and louder, respectively). &lt;/strong&gt;&lt;/em&gt;&lt;/p&gt;
&lt;p&gt;The point is to remove the code that is just junk, and control the text with an external sheet. This is generally referred to separating the content from the design. What it means is that you never have to edit the text again to upgrade it, instead, you can upgrade the CSS (one or a handful of files) only. &lt;/p&gt;
&lt;p&gt;If you have:&lt;/p&gt;
&lt;p&gt;This is some text that should be red, italicized, and small.&lt;/p&gt;
&lt;p&gt;First of all, it&#039;s using deprecated tags that will STOP WORKING SOON, even if they work now. More tags means more possiblity of nesting errors, mistakes and bloat.&lt;/p&gt;
&lt;p&gt;Secondly, imagine a whole page of this nonsense, when you can replace it with this in your CSS file:&lt;/p&gt;
&lt;p&gt;.attention {&lt;br /&gt;
font-size: 11px&lt;br /&gt;
color: #900;&lt;br /&gt;
font-style: italic;&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;And this in your code:&lt;/p&gt;
&lt;p&gt;This is some text that should be red, italicized, and small.&lt;/p&gt;
&lt;p&gt;Now imagine you have this text in 400 files. Instead of all those bloated, dying font tags, you have something you can search for using grep, something you can clearly understand when you see it what it&#039;s for, and something that you can entirely control from one file, not have to edit 400 files.&lt;/p&gt;
&lt;p&gt;See?&lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.webstandards.org&quot; class=&quot;bb-url&quot;&gt;webstandards.org&lt;/a&gt; has lots of resources on learning how to move forward and leave legacy coding in the dust. It will free you for better things.&lt;/p&gt;
 </description>
     <pubDate>Tue, 25 Jun 2002 07:09:32 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1110771 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/css-4#comment-1110769</link>
    <description> &lt;p&gt;It depends. For example, I always put my content in tables and therefore I set a default font with css (which reduces the HTML file size and I don&#039;t have to worry about setting font face, size, etc for every single piece of text):&lt;/p&gt;
&lt;p&gt;&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;td {&lt;br /&gt;	font-family: Verdana, Arial, Helvetica, sans-serif;&lt;br /&gt;	font-size: 12px;&lt;br /&gt;}&lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
&lt;p&gt;Then I create .big, .small, etc and use them where it&#039;s needed. If all .small text need to be bold, then you might as well set define it in the CSS rather than putting lots of  around text. But if you only use it a few times, you can use .&lt;/p&gt;
&lt;p&gt;Hope this made sense.&lt;/p&gt;
 </description>
     <pubDate>Tue, 25 Jun 2002 04:37:38 +0000</pubDate>
 <dc:creator>zollet</dc:creator>
 <guid isPermaLink="false">comment 1110769 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/css-4#comment-1110768</link>
    <description> &lt;p&gt;&lt;strong&gt;AWESOME!&lt;/strong&gt; Thank you!  That really helped alot.  &lt;/p&gt;
&lt;p&gt;First of all, I forgot about .  Common as it is, I just got along for years without using it.&lt;/p&gt;
&lt;p&gt;Second, I had no idea that I could just say .big, as opposed to specifying p.big AND b.big.  So this means that once I specify .big, I can use it in the body by many differnt tags?  Plus I didn&#039;t know I could put it in the  tag either.  These are such huge things that I did not know about.&lt;/p&gt;
&lt;p&gt;And finally one quesiton.  When I started learning CSS, people said not to ever mix css and &quot;non-css&quot;.  ALthough I&#039;ve seen that it works anyway, they would have said not to use font color=&quot;#990000&quot;, and that I should&#039;ve specified the color in the CSS.  (They also said that if I go with CSS, to stop using  and  and such.  Is this really a concern?&lt;/p&gt;
&lt;p&gt;Thanks again.  In answering my one question you&#039;ve helped me in ways that I didn&#039;t anticipate.&lt;/p&gt;
 </description>
     <pubDate>Tue, 25 Jun 2002 04:29:04 +0000</pubDate>
 <dc:creator>fifeclub</dc:creator>
 <guid isPermaLink="false">comment 1110768 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/css-4#comment-1110765</link>
    <description> &lt;p&gt;Here&#039;s something I made quick that might help you. Just load the page and then look at the source code. &lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.antinetscape.org/temp/cssexample.html&quot; class=&quot;bb-url&quot;&gt;http://www.antinetscape.org/temp/cssexample.html&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Tue, 25 Jun 2002 03:41:13 +0000</pubDate>
 <dc:creator>zollet</dc:creator>
 <guid isPermaLink="false">comment 1110765 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
