Subscribe Now

Receive alert message from us when new articles submitted to our site for free.

Enter Your Name
Enter Your E-Mail

Sponsors

Internet Marketing
Business Letter
Nursing job opportunities


Categories




Sign Up Here

Home / Computer Programming / CSS


Print | Send To Friends | Add To Favorites | Comment

CSS: The Basics - ID's and Classes

By: Eric McArdle

Article Word Count: 542 words  [Comments (0)]
Total Views: 176 Views



Css

Cascading Style Sheets

Two types of style sheets: Internal and External

Internal - You insert your style code right into your html code.
These stylesheets should only be used if you are intending to
create a specific page with a specific style. If you want to be
able to make global changes to your website using only one style
sheet, you have to use....

External Stylesheets - Instead of putting all the style code
into your html code, you can create a single document with your
css code and link to it within your webpages code. It would look
something like this

Webpage title< itle> <link rel="stylesheet"<br /> type="text/css" href="http://www.yourdomain.com/css"> </head> <br /> <br /> If you decide to use an internal stylesheet, you have to put<br /> your css style wihin the following tags: <br /> <br /> <style type="text/css"> </style> <br /> <br /> All css or links to the external stylesheets have to go in<br /> between the <head> tags <br /> <br /> Now about Css Classes vs. ID's <br /> <br /> The one major difference between a class and an id is that<br /> classes can be used multiple times within the same page while an<br /> Id can only be used once per page. <br /> <br /> Example: <br /> <br /> ID - The global navigation of your site, or a navigation bar. A<br /> footer, header, etc. Only items that appear in only one place<br /> per page. <br /> <br /> Class - Anything that you would use multiple times in your page,<br /> such as titles, subtitles, headlines, and the like. <br /> <br /> Creating ID 's<br /> <br /> To create an Id in your css, you would start with the number<br /> sign (#) and then your label of the id. Here's an example <br /> <br /> #navigation { float:left; } <br /> <br /> To insert the id in your html, you would do something like this <br /> <br /> <div id="navigation"> </div> <br /> <br /> You can also insert an id within another one like this <br /> <br /> <div id="navigation"> <div id="left"> <br /> <br /> </div> </div> <br /> <br /> Remember to close the id's in order. <br /> <br /> Now, onto css classes. <br /> <br /> Creating Classes<br /> <br /> To create a class in your css, use this <br /> <br /> .subtitle { color: #000000; } <br /> <br /> To insert the class into your html, do this <br /> <br /> <p class="subtitle" </p <br /> <br /> Now, you can use the same class repeatedly in the same page<br /> unlike Id's. <br /> <br /> I also want to tell you something about link attributes. You<br /> should always keep them in this order: <br /> <br /> a { color: #006699; text-decoration: none; font-size: 100%; } <br /> <br /> a:link { color: #006699; text-decoration: none; } <br /> <br /> a:visited { color: #006699; text-decoration: none; } <br /> <br /> a:hover { color: #0000FF; text-decoration: underline; } <br /> <br /> a:active { color: #FF0000 } <br /> <br /> Of course, you can change the colors and text-decorations. This<br /> is just something I cut out of my code! <br /> <br /> Okay, these are the basics. What I highly recommend is to go and<br /> download Topstyle Lite by going here: <br /> <br /> http://www.bradsoft.com opstyle slite/index.asp <br /> <br /> It's free and is a very helpful css editor. It not only color<br /> codes and organizes your code, but it provides you with tons of<br /> attributes that you can add to your class and id elements with<br /> just a click. They also provide a screen at the bottom to view<br /> your css code as you create it. Very useful for a free edition<br /> and I'm looking to buy the pro version soon. <br /> <br /> Now, this was just a very very brief explanation of the vital<br /> elements needed when structuring your css. I have a good feeling<br /> that when you download top style lite, you will learn how to use<br /> the hundreds of attributes in your classes and id's <br /> <br /> Good Luck in Your Web Designing Efforts! <br /> <p><h2>Grab this articles</h2> <p> <textarea rows='20' cols = '50'> <h1>CSS: The Basics - ID's and Classes</h1><p> <br /> Css <br /> <br /> Cascading Style Sheets <br /> <br /> Two types of style sheets: Internal and External <br /> <br /> Internal - You insert your style code right into your html code.<br /> These stylesheets should only be used if you are intending to<br /> create a specific page with a specific style. If you want to be<br /> able to make global changes to your website using only one style<br /> sheet, you have to use.... <br /> <br /> External Stylesheets - Instead of putting all the style code<br /> into your html code, you can create a single document with your<br /> css code and link to it within your webpages code. It would look<br /> something like this <br /> <br /> <head> <title>Webpage title< itle> <link rel="stylesheet"<br /> type="text/css" href="http://www.yourdomain.com/css"> </head> <br /> <br /> If you decide to use an internal stylesheet, you have to put<br /> your css style wihin the following tags: <br /> <br /> <style type="text/css"> </style> <br /> <br /> All css or links to the external stylesheets have to go in<br /> between the <head> tags <br /> <br /> Now about Css Classes vs. ID's <br /> <br /> The one major difference between a class and an id is that<br /> classes can be used multiple times within the same page while an<br /> Id can only be used once per page. <br /> <br /> Example: <br /> <br /> ID - The global navigation of your site, or a navigation bar. A<br /> footer, header, etc. Only items that appear in only one place<br /> per page. <br /> <br /> Class - Anything that you would use multiple times in your page,<br /> such as titles, subtitles, headlines, and the like. <br /> <br /> Creating ID 's<br /> <br /> To create an Id in your css, you would start with the number<br /> sign (#) and then your label of the id. Here's an example <br /> <br /> #navigation { float:left; } <br /> <br /> To insert the id in your html, you would do something like this <br /> <br /> <div id="navigation"> </div> <br /> <br /> You can also insert an id within another one like this <br /> <br /> <div id="navigation"> <div id="left"> <br /> <br /> </div> </div> <br /> <br /> Remember to close the id's in order. <br /> <br /> Now, onto css classes. <br /> <br /> Creating Classes<br /> <br /> To create a class in your css, use this <br /> <br /> .subtitle { color: #000000; } <br /> <br /> To insert the class into your html, do this <br /> <br /> <p class="subtitle" </p <br /> <br /> Now, you can use the same class repeatedly in the same page<br /> unlike Id's. <br /> <br /> I also want to tell you something about link attributes. You<br /> should always keep them in this order: <br /> <br /> a { color: #006699; text-decoration: none; font-size: 100%; } <br /> <br /> a:link { color: #006699; text-decoration: none; } <br /> <br /> a:visited { color: #006699; text-decoration: none; } <br /> <br /> a:hover { color: #0000FF; text-decoration: underline; } <br /> <br /> a:active { color: #FF0000 } <br /> <br /> Of course, you can change the colors and text-decorations. This<br /> is just something I cut out of my code! <br /> <br /> Okay, these are the basics. What I highly recommend is to go and<br /> download Topstyle Lite by going here: <br /> <br /> http://www.bradsoft.com opstyle slite/index.asp <br /> <br /> It's free and is a very helpful css editor. It not only color<br /> codes and organizes your code, but it provides you with tons of<br /> attributes that you can add to your class and id elements with<br /> just a click. They also provide a screen at the bottom to view<br /> your css code as you create it. Very useful for a free edition<br /> and I'm looking to buy the pro version soon. <br /> <br /> Now, this was just a very very brief explanation of the vital<br /> elements needed when structuring your css. I have a good feeling<br /> that when you download top style lite, you will learn how to use<br /> the hundreds of attributes in your classes and id's <br /> <br /> Good Luck in Your Web Designing Efforts! <br /> More <a href="http://www.articlesroom.com">free articles</a> from <a href="http://www.articlesroom.com">http://www.articlesroom.com</a> </textarea> <p> </td></tr></table><table width='100%'> <tr> <td valign='top'> <h3>Related articles</h3> <br><ul><li><a href='Samoa-Holidays-can-help-you-Rejuvenate-your-Body-and-Soul-173433/'><font size='2' face='arial'>Samoa Holidays can help you Rejuvenate your Body and Soul</font></a></li><li><a href='How-West-Ottawa-is-a-Good-Place-to-Select-Apartment-for-Rent-173428/'><font size='2' face='arial'>How West Ottawa is a Good Place to Select Apartment for Rent</font></a></li><li><a href='Assisted-living-Chicago-173389/'><font size='2' face='arial'>Assisted living Chicago</font></a></li><li><a href='Are-you-looking-for-a-great-holiday-option-and-your-family-is-ready-to-go-to-Ibiza-173368/'><font size='2' face='arial'>Are you looking for a great holiday option and your family is ready to go to Ibiza.</font></a></li><li><a href='The-Glory-of-Sunless-Tanning-173362/'><font size='2' face='arial'>The Glory of Sunless Tanning</font></a></li><li><a href='Find-Stunning-Contemporary-Furniture-To-Make-Your-Home-An-Oasis-173312/'><font size='2' face='arial'>Find Stunning Contemporary Furniture To Make Your Home An Oasis</font></a></li><li><a href='Drench-in-the-Regal-Ambiance-with-Portugal-Holiday-Packages-173298/'><font size='2' face='arial'>Drench in the Regal Ambiance with Portugal Holiday Packages</font></a></li><li><a href='WaterRelated-Disaster-Safety-First-173293/'><font size='2' face='arial'>Water-Related Disaster? Safety First</font></a></li><li><a href='Eye-Shadow-Tips-Every-Woman-Should-Know-173279/'><font size='2' face='arial'>Eye Shadow Tips Every Woman Should Know</font></a></li><li><a href='Jaipur-Hotels-173260/'><font size='2' face='arial'>Jaipur Hotels</font></a></li><li><a href='Learn-How-A-Grand-Rapids-Dentist-Will-Create-A-Beautiful-Smile-While-Allaying-Your-Fears-Of-The-Dentist-173219/'><font size='2' face='arial'>Learn How A Grand Rapids Dentist Will Create A Beautiful Smile While Allaying Your Fears Of The Dentist</font></a></li><li><a href='Cosmetic-Aesthetics-Treatments-173217/'><font size='2' face='arial'>Cosmetic Aesthetics Treatments</font></a></li><li><a href='Learn-More-About-The-Greatest-Actress-In-Canada-Sabine-Mondestin-173214/'><font size='2' face='arial'>Learn More About The Greatest Actress In Canada, Sabine Mondestin</font></a></li><li><a href='Part-of-body-treatment-173206/'><font size='2' face='arial'>Part of body treatment</font></a></li><li><a href='Booking-a-Holiday-Tour-in-Tallin-173205/'><font size='2' face='arial'>Booking a Holiday Tour in Tallin</font></a></li><li><a href='Service-at-some-of-the-hotels-in-Ibiza-is-great-and-make-you-feel-at-home-173198/'><font size='2' face='arial'>Service at some of the hotels in Ibiza is great and make you feel at home</font></a></li><li><a href='Colors-In-The-Web-173195/'><font size='2' face='arial'>Colors In The Web</font></a></li><li><a href='Why-Sprinkler-Repairs-Companies-Will-Actually-SAVE-You-Money-173179/'><font size='2' face='arial'>Why Sprinkler Repairs Companies Will Actually SAVE You Money</font></a></li><li><a href='Getting-your-web-migration-right-173164/'><font size='2' face='arial'>Getting your web migration right</font></a></li><li><a href='HP-LASERJET-PRINTER-MAINTENANCE-173159/'><font size='2' face='arial'>HP LASERJET PRINTER MAINTENANCE</font></a></li><li><a href='Services-of-English-Escorts-in-London-173143/'><font size='2' face='arial'>Services of English Escorts in London</font></a></li><li><a href='Are-English-Escorts-in-London-Prostitutes-173142/'><font size='2' face='arial'>Are English Escorts in London Prostitutes?</font></a></li><li><a href='English-Escorts-in-London-for-a-Night-To-Remember-173141/'><font size='2' face='arial'>English Escorts in London for a Night To Remember</font></a></li><li><a href='How-about-getting-enjoyed-at-Tur-palas-playa-den-bossa-ibiza-173138/'><font size='2' face='arial'>How about getting enjoyed at Tur palas playa den bossa ibiza</font></a></li><li><a href='A-Guide-to-purchasing-Park-Benches-173131/'><font size='2' face='arial'>A Guide to purchasing Park Benches</font></a></li></ul><h3>Newest Articles</h3><ul><li><a href='Reviews-on-Different-Business-Catalog-Printing-Process-159059/'><font size='2' face='arial'>Reviews on Different Business Catalog Printing Process</font></a></li><li><a href='Selling-Your-Experience-159058/'><font size='2' face='arial'>Selling Your Experience</font></a></li><li><a href='Where-Cable-Lighting-Should-Be-Used-159057/'><font size='2' face='arial'>Where Cable Lighting Should Be Used?</font></a></li><li><a href='Level-Up-Your-Business-Cards-A-Notch-Higher-159056/'><font size='2' face='arial'>Level Up Your Business Cards A Notch Higher</font></a></li><li><a href='Pedaling-to-wash-clothes-159055/'><font size='2' face='arial'>Pedaling to wash clothes</font></a></li><li><a href='Basic-Adventure-Travel-Check-List-159054/'><font size='2' face='arial'>Basic Adventure Travel Check List</font></a></li><li><a href='eConn-Resume-Processing-Solution-only-at-249-159053/'><font size='2' face='arial'>eConn Resume Processing Solution only at $249</font></a></li><li><a href='Advanced-Kiosk-Systems-to-Compact-Tough-Conditions-159052/'><font size='2' face='arial'>Advanced Kiosk Systems to Compact Tough Conditions</font></a></li><li><a href='Freestanding-Fire-Pits-Now-for-Entertainment-and-Grilling-159051/'><font size='2' face='arial'>Freestanding Fire Pits: Now for Entertainment and Grilling</font></a></li><li><a href='How-to-Keep-Your-Fire-Pit-Handy-for-Winter-Use-159050/'><font size='2' face='arial'>How to Keep Your Fire Pit Handy for Winter Use</font></a></li><li><a href='Mr-Ashok-Mahindru-159049/'><font size='2' face='arial'>Mr. Ashok Mahindru</font></a></li><li><a href='Propecia-Prescription-To-Give-Your-Hair-Grow-Back-159048/'><font size='2' face='arial'>Propecia Prescription To Give Your Hair Grow Back</font></a></li><li><a href='Audemars-Piguet-Replica-WatchesA-Much-Better-Quality-At-Fashionreplicacom-159047/'><font size='2' face='arial'>Audemars Piguet Replica Watches-A Much Better Quality At Fashion-replica.com</font></a></li><li><a href='Choose-the-best-elitemakeup-foundation-159046/'><font size='2' face='arial'>Choose the best elitemakeup foundation</font></a></li><li><a href='Hublot-Replica-Watch-The-preferred-Christmas-gift-at-the-highest-levels-159045/'><font size='2' face='arial'>Hublot Replica Watch -The preferred Christmas gift at the highest levels</font></a></li><li><a href='Pass-a-Drag-Test-Pass-a-Social-Responsibility-159044/'><font size='2' face='arial'>Pass a Drag Test: Pass a Social Responsibility</font></a></li><li><a href='Tag-Heuer-Replica-At-Fashionreplicacom-–-The-Best-Gifts-For-Christmas-159043/'><font size='2' face='arial'>Tag Heuer Replica At Fashion-replica.com – The Best Gifts For Christmas </font></a></li><li><a href='Passing-a-Drag-Test-Is-the-First-Step-159042/'><font size='2' face='arial'>Passing a Drag Test Is the First Step</font></a></li><li><a href='You-May-Run-but-You-Can-not-Hide-From-a-Drug-Test-159041/'><font size='2' face='arial'>You May Run but You Can not Hide From a Drug Test</font></a></li><li><a href='Event-management-and-advertising-services-from-Infra-Design-159040/'><font size='2' face='arial'>Event management and advertising services from Infra Design</font></a></li><li><a href='Utah-Ski-Resort-Real-Estate-And-Lodging-Snow-Basin-And-Powder-159039/'><font size='2' face='arial'>Utah Ski Resort Real Estate And Lodging Snow Basin And Powder</font></a></li><li><a href='Drugs-in-the-Field-of-Sports-159038/'><font size='2' face='arial'>Drugs in the Field of Sports</font></a></li><li><a href='Do-Your-Kid-pass-a-Drug-Test-159037/'><font size='2' face='arial'>Do Your Kid pass a Drug Test?</font></a></li><li><a href='Get-that-Catalog-Printing-Right-159036/'><font size='2' face='arial'>Get that Catalog Printing Right</font></a></li><li><a href='Understand-Exactly-What-Your-Business-Has-to-Offer-159035/'><font size='2' face='arial'>Understand Exactly What Your Business Has to Offer</font></a></li></ul><h3>Most Popular Articles</h3><ul><li><a href='12-Golden-rules-for-every-Dog-owner-1/'><font size='2' face='arial'>12 Golden rules for every Dog owner</font></a></li><li><a href='17-Tips-Thatll-Safeguard-You-and-Your-Family-From-Dog-Bites-3/'><font size='2' face='arial'>17 Tips That'll Safeguard You and Your Family From Dog Bites</font></a></li><li><a href='14-Tips-for-Crate-Training-Your-New-Puppy-2/'><font size='2' face='arial'>14 Tips for Crate Training Your New Puppy</font></a></li><li><a href='3-Simple-Steps-For-A-Healthier-Dog-4/'><font size='2' face='arial'>3 Simple Steps For A Healthier Dog</font></a></li><li><a href='3-Tips-For-Dealing-With-Dog-Emergencies-5/'><font size='2' face='arial'>3 Tips For Dealing With Dog Emergencies</font></a></li><li><a href='Generating-a-positive-ROI-from-PPC-7/'><font size='2' face='arial'>Generating a positive ROI from PPC</font></a></li><li><a href='Search-Engine-Promotion-your-options-explained-6/'><font size='2' face='arial'>Search Engine Promotion - your options explained</font></a></li><li><a href='Submit-site-to-announce-it-to-the-world-8/'><font size='2' face='arial'>Submit site to announce it to the world!</font></a></li><li><a href='Exercise-Bikes-–-How-Far-They-Have-Come-36709/'><font size='2' face='arial'>Exercise Bikes – How Far They Have Come</font></a></li><li><a href='Mortgage-Equity-Loans-With-Multiple-Benefits-143582/'><font size='2' face='arial'>Mortgage Equity Loans With Multiple Benefits </font></a></li><li><a href='Javascript-Basics-01-105388/'><font size='2' face='arial'>Javascript Basics 01</font></a></li><li><a href='Home-Equity-Online-Loans-become-more-popular-143581/'><font size='2' face='arial'>Home Equity Online Loans become more popular </font></a></li><li><a href='What-Does-Your-Body-Language-Tell-128514/'><font size='2' face='arial'>What Does Your Body Language Tell?</font></a></li><li><a href='Let-Your-Business-Grow-By-Invoice-discounting-in-the-UK-143583/'><font size='2' face='arial'>Let Your Business Grow By Invoice discounting in the UK </font></a></li><li><a href='Uncommon-Facts-Rules-of-English-Language-122020/'><font size='2' face='arial'>Uncommon Facts / Rules of English Language</font></a></li><li><a href='Misunderstandings-Due-To-Accents-124221/'><font size='2' face='arial'>Misunderstandings Due To Accents</font></a></li><li><a href='Diabetes-and-Your-Eyesight-129800/'><font size='2' face='arial'>Diabetes and Your Eyesight</font></a></li><li><a href='How-to-Prevent-Online-Identity-Theft-134713/'><font size='2' face='arial'>How to Prevent Online Identity Theft</font></a></li><li><a href='Learn-to-Speak-Basic-Chinese-Mandarin-Words-and-Phrases-134352/'><font size='2' face='arial'>Learn to Speak Basic Chinese (Mandarin) Words and Phrases</font></a></li><li><a href='Learn-Korean-Part-1-Asian-Languages-and-Language-Families-125443/'><font size='2' face='arial'>Learn Korean: Part 1 - Asian Languages and Language Families</font></a></li><li><a href='Pancreas-Transplants-A-Solution-For-Type-1-Diabetes-Sufferers-128084/'><font size='2' face='arial'>Pancreas Transplants - A Solution For Type 1 Diabetes Sufferers?</font></a></li><li><a href='Tips-To-Learn-English-128513/'><font size='2' face='arial'>Tips To Learn English</font></a></li><li><a href='Learn-Korean-Part-2-Social-Status-in-Culture-136877/'><font size='2' face='arial'>Learn Korean: Part 2 - Social Status in Culture</font></a></li><li><a href='IELTS-Facts-Not-Many-People-Know-134456/'><font size='2' face='arial'>IELTS: Facts Not Many People Know</font></a></li><li><a href='Aphasia-The-Cruelest-Language-Barrier-128612/'><font size='2' face='arial'>Aphasia: The Cruelest Language Barrier</font></a></li></ul> </td> <td valign='top'> <script type='text/javascript'><!-- google_ad_client = 'pub-1958729083303091'; google_ad_width = 160; google_ad_height = 600; google_ad_format = '160x600_as'; google_ad_type = 'text_image'; google_ad_channel = '9616489279'; google_color_border = 'FFFFFF'; google_color_bg = 'FFFFFF'; google_color_link = '0000ff'; google_color_text = '000000'; google_color_url = '455a79'; //--> </script> <script type='text/javascript' src='http://pagead2.googlesyndication.com/pagead/show_ads.js'> </script> </td> </tr> </table> </p> </div> </div><!--end of right content--> <div style=" clear:both;"></div> </div><!--end of main content--> <div id="footer"> <div class="footer_links"> <p align ="center"> </p> 2007 <a href="http://www.articlesroom.com">articlesroom.com</a> - All Rights Reserved </div> </div> </div> <!--end of main container--> </body> </html>