HTML Tutorial


 /help/HTML Help Forum   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!
I defined an element with css and it dont work
Post new topic   Reply to topic    HTML Help Forum -> CSS
View previous topic :: View next topic  
Author Message
willancs



Joined: 15 Jul 2005
Posts: 17

PostPosted: Fri Aug 19, 2005 8:14 am     I defined an element with css and it dont work Reply with quote

i tried to make an element with css with text 1 inch high.

this is the code in the css file

.class1 {
font-size: 1in;
}

this is the bit in the head tag of the page linking to the css sheet

<link rel="stylesheet href="control.css" type="text/css">

and this is me trying to use the element


<class1>heading</class1>

and i just get it in html font size 3 which is patently not 1 inch high! any help pointing out where ive gone wrong would be much appreciated.
Corey Bryant
Site Admin


Joined: 15 May 2004
Posts: 8748
Location: Castle Pines North, CO USA

PostPosted: Fri Aug 19, 2005 10:18 am     Reply with quote

You cannot create your element, basically, try
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
   "http://www.w3.org/TR/html4/loose.dtd">
<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>New Page 3</title>
<style type="text/css">
div.class1 {
font-size: 1in;
}
</style>
</head>

<body>
<div class="class1">Heading</div>
</body>

</html>
Display posts from previous:   
Post new topic   Reply to topic    HTML Help Forum -> 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 

 
DARFUR
HOSTING / DESIGN
MAKE MONEY

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