HTML Tutorial


 Forum HomeForum Home   FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 
RegisterRegister - Not registered yet? Got something to say? Join HTML Code Tutorial!
<p> paragraph setup
Post new topic   Reply to topic    HTML Help Forum Index -> CSS
View previous topic :: View next topic  
Author Message
Wag



Joined: 04 Mar 2008
Posts: 4

PostPosted: Tue Mar 04, 2008 11:38 am     <p> paragraph setup Reply with quote

What does a person do if they want ....say different colored text in some paragraghs?

p {color: rgb(0,0,255)}

How do you distinguish what you want to happen in different paragraphs?

Can you use....

p1 {color: rgb(0,0,255)}
p2 {color: rgb(0,0,255)}

What would the relating body code be?
sticks464



Joined: 31 Dec 2006
Posts: 1164

PostPosted: Tue Mar 04, 2008 12:16 pm     Reply with quote

You can give each paragraph a class id and style each one regardless of where it is located in the body
Code:
<p class="one">Some text</p>
<p class="two">Some text</p>
<p class="three">Some text</p>


css
Code:

body {font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: .75em;
color: black;
line-height: 16px;}
.one {color: red; font-family:Arial, Helvetica, sans-serif;}
.two {color: green; font-style: italic;}
.three {color:blue; text-transform:uppercase;}


The body style sets the font, size, color and space between lines for the whole page. You can change the attributes for individual text blocks with their own styles. These styles will only effect the paragraphs with the class name assigned.
Wag



Joined: 04 Mar 2008
Posts: 4

PostPosted: Tue Mar 04, 2008 1:43 pm     re Reply with quote

Thanks for the reply, I'll try that Smile
Display posts from previous:   
Post new topic   Reply to topic    HTML Help Forum Index -> CSS All times are GMT - 8 Hours
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
HTML Help Archive
Powered by phpBB © 2001, 2005 phpBB Group
HTML Help topic RSS feed 

 
HOSTING / DESIGN
MAKE MONEY

Home
  |   Tutorials   |   Forum   |   Quick List   |   Link Directory   |   About
Copyright ©1997-2002 Idocs and ©2002-2007 HTML Code Tutorial