dinger2121
Programmer
Hello,
I am attempting to change the formatting of some text midway through a sentence, but it doesn't seem to be working. Here is the html that I am working with -
<p class="large">Here is the first <span class="small"> here is the second</span></p>
Here is my css -
p
{
color: #3A5167; text-align: center;
padding: 0px; margin: 0px;
}
p.large
{
font-size:larger; font-weight:100; margin: 0px;
}
p.small
{
font-size:x-small ; font-weight: 100; margin: 0px;
}
The problem is that the second sentence isn't formatted small.
Am I attacking this from an incorrect angle? Thanks for any thoughts.
carl
MCSD, MCTS:MOSS
I am attempting to change the formatting of some text midway through a sentence, but it doesn't seem to be working. Here is the html that I am working with -
<p class="large">Here is the first <span class="small"> here is the second</span></p>
Here is my css -
p
{
color: #3A5167; text-align: center;
padding: 0px; margin: 0px;
}
p.large
{
font-size:larger; font-weight:100; margin: 0px;
}
p.small
{
font-size:x-small ; font-weight: 100; margin: 0px;
}
The problem is that the second sentence isn't formatted small.
Am I attacking this from an incorrect angle? Thanks for any thoughts.
carl
MCSD, MCTS:MOSS