Click to See Complete Forum and Search --> : I Need help with cascading style sheets


mook
08-07-2003, 06:04 PM
what are css?

Khalid,

Thank you for replying. So I look for color:, font: etc. But how do you go about placing the cascading menus in the exact spot that you've allocated for the design?

And can you please expain Cascading Style Sheets and how I use them? Please?

Is there a book or a website that you would recommend to me?

Thank you for your help. I really appreciate it.

-Mook


__________________
Thanks for your help!




Report this post to a moderator | IP: Logged

08-07-2003 04:41 PM

elwell
08-07-2003, 11:14 PM
a better place to put this question would be in the CSS category of this forum.

One way to do use css is as so:
<html>
<head><title>WHATEVER</title>
<style type="text/css">
//what ever design you want can go here
//you can use either classes or ids

//first ill tell you about classes

.whateverdesign {font-family: Trebuchet MS; color: blue}

//now for another way. ids

#whateverdesign {font-family: Trebuchet MS; color: red}

</style>
</head>

<body>
<span class="whateverdesign">BLAH BLAH BLAH</span>
<div id="whateverdesign">BLAH BLAH BLAH</div>
</body>
</html>