Forum Moderators: not2easy
#sborder td
{
.links { text-decoration: none}
}
Can anyone help me get this to work in Firefox as well? Thanks!
Will vertical-align suit your purpose?
Bingo, thats what I was looking for :) Thank you. Maybe you can answer my very last question about the H1. I know that H1 tags are good for seo, and I was just wondering if using CSS can be a substitute...and what would be the code for that. It probably would be something like:
font-size: 200%;
But it didn't quite look like the H1 tag. Not too sure.
If you use css to make a line of text look like an H1 tag, but you don't actually use an H1 tag in the mark-up, then there is no SEO advantage, nor is there any semantic clarity.
If you ever find your self with the same class name being attached to multiple elements over and over again:
<ul>
<li><a class="plain" href="blah.html">blah</a></li>
<li><a class="plain" href="blah.html">blah</a></li>
<li><a class="plain" href="blah.html">blah</a></li>
<li><a class="plain" href="blah.html">blah</a></li>
</ul>
a.plain {text-decoration: none;}
then you need to attach the class to the parent HTML element and then style it like this:
<ul class="plain">
<li><a href="blah.html">blah</a></li>
<li><a href="blah.html">blah</a></li>
<li><a href="blah.html">blah</a></li>
<li><a href="blah.html">blah</a></li>
</ul>
.plain a {text-decoration: none;}
It removes a lot of bloat from the HTML.