I am having some strange CSS problems... I need someone to tell me why one class is being applied and the other isn't when I'm using the exact same technique on both. You can see my test URL at:
The CSS is linked externally and includes the following class declarations:
On that test page, I just have the following code to test these classes:
The "alert" text looks fine, but the "subheadline" text doesn't get applied. What gives?
The CSS is linked externally and includes the following class declarations:
Code:
.alert {
color:red;
font-weight:bold;
}
.subheadline {
font:bold 16px;
}
On that test page, I just have the following code to test these classes:
Code:
<span class="alert">fdafsdfads</span><br />
<span class="subheadline">fdsadfasafds</span>
The "alert" text looks fine, but the "subheadline" text doesn't get applied. What gives?