Ie & Ff

liunx

Guest
Another small questions is:

I have an <H3> & A tage that doesn't look the same.

I have this code:


<h3>Not a member? <a class="join" href=http://www.webdeveloper.com/forum/archive/index.php/"joinNow.htm">Join Now</a></h3>

h3 {
color: #fff;
padding: 20px 0px 0px 20px;
margin: -20px 0px 0px 0px;
}
a.join:link {
text-decoration: underline;
color: #febf1a;
}
a.join:visited {
text-decoration: underline;
color: #febf1a;
}
a.join:hover {
text-decoration: underline;
color: #febf1a;
}


How can I make'em look the same?

Thanks!IE doesn't like 0 padding I think (you don't need a unit when you use 0 either)It's the same, no change.you would have to add

.join{
blah
}add it to where?<h3>Not a member? <a class="join" href=http://www.webdeveloper.com/forum/archive/index.php/"joinNow.htm">Join Now</a></h3>

h3 {
color: #fff;
padding: 20px 0px 0px 20px;
margin: -20px 0px 0px 0px;
}
.join{
blah
}
a.join:link {
text-decoration: underline;
color: #febf1a;
}
a.join:visited {
text-decoration: underline;
color: #febf1a;
}
a.join:hover {
text-decoration: underline;
color: #febf1a;
}What's that thing is good for?I believe it's like a constuctor in programming languages. It tells the broswer what to start with.

If you don't need to start with anything, then just have blank {}.

What is the difference in the display of the broswers? Does it display some things, or none of your code at all?
 
Back
Top