Cool uses for Css?

  • ClericVash
  • Banned
  • Banned
  • User avatar
  • Joined: Jan 06, 2004
  • Posts: 65
  • Status: Offline

Post January 7th, 2004, 3:39 am

Hi all i recently learnt the very basics of css, like how to include it in a page, using it as classes for fonts and borders.

And want to know if there is anything really cool that you can do with css?
  • Anonymous
  • Bot
  • No Avatar
  • Joined: 25 Feb 2008
  • Posts: ?
  • Loc: Ozzuland
  • Status: Online

Post January 7th, 2004, 3:39 am

  • Lieven
  • Beginner
  • Beginner
  • User avatar
  • Joined: Jan 04, 2004
  • Posts: 57
  • Loc: Belgium
  • Status: Offline

Post January 7th, 2004, 4:23 am

I got all my inspiration/knowledge on http://bluerobot.com/web/layouts/default.asp. It is a basic lay-out you can download and start playing with. (that's the way I learned it)

Now, I've redone my personal website in CSS (check my .sig for the link :))

Another really cool CSS showcase is
http://www.csszengarden.com/. You can choose another css file from the menu. All the different lay-outs are just different stylesheets all using the same html file. You can learn a lot about how to do special things by looking at their sourcecode.
  • RichB
  • Guru
  • Guru
  • User avatar
  • Joined: May 17, 2003
  • Posts: 1121
  • Loc: Boston
  • Status: Offline

Post January 7th, 2004, 4:30 am

One of the things you can do with it that can greatly simplify things is to provide a general look and feel for a large website by creating a separate external style sheet and then including it by linking to it from all the pages in the site. That way when you want to change the colors, fonts, etc. you can just edit the style sheet and leave the html files alone. You can also override the default behavior of html elements. For example, I don't like the way the standard h1 tag looks, so I override it and make it look the way that I want.

Some of the cooler things you can do with it involve the use of DHTML. Dynamic HTML isn't really a language at all but a technique that combines Javascript's programming capabilites with CSS formatting and positioning abilites. With DHTML you can move things around on a webpage, make them appear/disappear without reloading the page and do a bunch of interesting things. Try searching Google for DHTML tutorial for more information.
Free Programming Resources
  • digitalMedia
  • a.k.a. dM
  • Genius
  • User avatar
  • Joined: Dec 29, 2003
  • Posts: 5169
  • Loc: SC-USA
  • Status: Offline

Post January 7th, 2004, 5:37 am

Here are some of my favorite links on the subject

http://www.hotdesign.com/seybold/
http://www.9rules.com/cssvault/
http://glish.com/css/
- dM
  • ClericVash
  • Banned
  • Banned
  • User avatar
  • Joined: Jan 06, 2004
  • Posts: 65
  • Status: Offline

Post January 7th, 2004, 6:59 am

thanks for all the input guys really appreciated!
  • Geekette
  • Proficient
  • Proficient
  • User avatar
  • Joined: Jun 25, 2003
  • Posts: 482
  • Loc: The Land of NeverWinter (FL)
  • Status: Offline

Post January 8th, 2004, 2:08 pm

Wow, those are some really great links. Makes me want to start designing again. ::sigh::
  • b_heyer
  • Web Master
  • Web Master
  • User avatar
  • Joined: Jun 15, 2003
  • Posts: 4583
  • Loc: Maryland
  • Status: Offline

Post January 8th, 2004, 3:53 pm

Everything you do with CSS is cool. :-P

Check out... http://www.w3schools.com/css
Pixel Acres V2
  • ClericVash
  • Banned
  • Banned
  • User avatar
  • Joined: Jan 06, 2004
  • Posts: 65
  • Status: Offline

Post January 9th, 2004, 7:13 am

thanks for all the linksi found http://glish.com/css/ to be an excelent source of making layouts!

and b_heyer nice av man :P
  • b_heyer
  • Web Master
  • Web Master
  • User avatar
  • Joined: Jun 15, 2003
  • Posts: 4583
  • Loc: Maryland
  • Status: Offline

Post January 9th, 2004, 1:32 pm

hehheh thanks!
Pixel Acres V2
  • lslars31
  • Novice
  • Novice
  • No Avatar
  • Joined: Jan 10, 2004
  • Posts: 16
  • Loc: Minesota
  • Status: Offline

Post January 10th, 2004, 7:16 pm

try http://w3schools.com
  • Geekette
  • Proficient
  • Proficient
  • User avatar
  • Joined: Jun 25, 2003
  • Posts: 482
  • Loc: The Land of NeverWinter (FL)
  • Status: Offline

Post January 10th, 2004, 7:27 pm

Please try not to be repetitive, lsars31. Had you read the entire thread, you would have noticed that b_heyer posted the same link.
  • lslars31
  • Novice
  • Novice
  • No Avatar
  • Joined: Jan 10, 2004
  • Posts: 16
  • Loc: Minesota
  • Status: Offline

Post January 10th, 2004, 7:32 pm

oh sorry about that. Just trying to help :D thats a really good site.
  • xfsunoles
  • Newbie
  • Newbie
  • No Avatar
  • Joined: Sep 25, 2003
  • Posts: 7
  • Status: Offline

Post January 11th, 2004, 10:28 am

CSS is way cool, it replace each of little html tag. each of little html tag take too much time of coding and it page load smaller
  • thevirus
  • Banned
  • Banned
  • No Avatar
  • Joined: Dec 08, 2003
  • Posts: 35
  • Status: Offline

Post January 11th, 2004, 10:42 am

Its good for making table's look more professional with borders and its also good for search engine optimization. For example you can make h1 and h2 tags the same size as all the other text. But besides that its not that usefull its just good to know.
  • ATNO/TW
  • Super Moderator
  • Super Moderator
  • User avatar
  • Joined: May 28, 2003
  • Posts: 23404
  • Loc: Woodbridge VA
  • Status: Offline

Post January 11th, 2004, 11:12 am

thevirus wrote:
Its good for making table's look more professional with borders and its also good for search engine optimization. For example you can make h1 and h2 tags the same size as all the other text. But besides that its not that usefull its just good to know.


I beg to differ with this. It is the W3C recommendation and standard to code with CSS. They make it very clear that CSS is to be used for presentation of the document and that HTML is to be used only for structure. In fact if you do not code with CSS, your web documents will no longer be valid to current standards. You can take your own home page as an example: http://validator.w3.org/check?uri=http% ... nce.com%2F
"There's no place like 127.0.0.1 except for ::1."
Alexandria Networks. Leader in IT consulting for associations/non-profits, and small to medium sized businesses around the northern Virginia and Washington D.C. metro area.
  • Anonymous
  • Bot
  • No Avatar
  • Joined: 25 Feb 2008
  • Posts: ?
  • Loc: Ozzuland
  • Status: Online

Post January 11th, 2004, 11:12 am

Post Information

  • Total Posts in this topic: 20 posts
  • Users browsing this forum: No registered users and 176 guests
  • 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 post attachments in this forum
 
 

© 2011 Unmelted, LLC. Ozzu® is a registered trademark of Unmelted, LLC.