Style Sheets
  Home arrow Style Sheets arrow Page 6 - Learn CSS, Selectors, part 2
Dev Articles Forums 
ADO.NET  
Apache  
ASP  
ASP.NET  
C#  
C++  
ColdFusion  
COM/COM+  
Delphi-Kylix  
Design Usability  
Development Cycles  
DHTML  
Embedded Tools  
Flash  
Graphic Design  
HTML  
IIS  
Interviews  
Java  
JavaScript  
MySQL  
Oracle  
Photoshop  
PHP  
Reviews  
Ruby-on-Rails  
SQL  
SQL Server  
Style Sheets  
VB.Net  
Visual Basic  
Web Authoring  
Web Services  
Web Standards  
XML  
Mobile Linux 
App Generation ROI 
IBM® developerWorks 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
STYLE SHEETS

Learn CSS, Selectors, part 2
By: Michael Youssef
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 14
    2005-06-13

    Table of Contents:
  • Learn CSS, Selectors, part 2
  • The Attribute Selector
  • Specific-Value Attribute Selector
  • The Specific-Values Attribute Selector
  • The Begin With Specific-Value Attribute Selector
  • The End With Specific-Value Attribute Selector
  • The Contain-Value Attribute Selector

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Learn CSS, Selectors, part 2 - The End With Specific-Value Attribute Selector


    (Page 6 of 7 )

    This attribute selector is very similar to the earlier one, but instead of matching the string at the beginning of the attribute's value, it matches the string at the end of the attribute's value. The syntax uses the $ sign instead of the ^ symbol. Suppose we need to differentiate between the links that refer to asp pages and links that refer to php pages. We can use the end with specific-value attribute selector to do this job. Let's take a look:

    a
    {
    background-color: greenyellow;
    color: blue;
    }
    a[href^="http://www"]
    {
    background-color: red;
    color: white;
    }
    a[href$="asp"]
    {
    background-color: cyan;
    color: black;
    }
    a[href$="php"]
    {
    background-color: maroon;
    color: yellow;
    }
     

    The HTML code:

    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <link rel="stylesheet" href="Selectors.css" type="text/css">
    <title>CSS Selectors</title>
    </head>
    <body>
    <a href="Home.html">Home</a>|<a href="contact.asp">Contact Us</a>|
    <a href="forums.php">Forums</a>
    <p lang="en-us">You can use CSS with markup languages like HTML, XHTML and XML. All
    those markup languages and also CSS has Specifications as the <a
    href="http://www.w3.org">W3C website</a>
    </p>
    <p>The <a href="http://www.w3.org" target="_blank">W3C website </a>
    contains specifications for web standards and it's
    very useful for web designers, developers and software architectures to
    navigate this website. For example, you have the CSS 2.1 Specifications
    and the XHTML 1.0 Specifications discussing everything from A to Z about
    the technology
    </p>
    </body>
    </html>

    And here is the result:
     

    As you can see, the Contact Us link refers to a page that has the extension .asp, and the Forums link refers to a page that has the extension .php. By using this selector, we have styled each link based on their extension (.php or .asp). This can be very handy, but unfortunately Microsoft Internet Explorer doesn't support attribute selectors at all. If you open this page using IE you will get the following result (only the a selector style is applied to the links):

     

    More Style Sheets Articles
    More By Michael Youssef


     

    STYLE SHEETS ARTICLES

    - Image Replacement CSS Techniques
    - Using BlueTrip`s Success, Notice and Error C...
    - More Uses for the Thin and Caps CSS Classes ...
    - Styling Definition Lists with the BlueTrip C...
    - Styling Unordered and Ordered HTML Lists wit...
    - Using the BlueTrip CSS Framework`s Thin and ...
    - Adding Borders to Web Page Columns with Blue...
    - Introducing the BlueTrip CSS Framework
    - Using a Background Grid to Assist Web Page L...
    - Extending the Rule Of Thirds for Web Page La...
    - A Two-Column Web Page Layout Based on the Ru...
    - Using the Rule Of Thirds for Web Page Layout
    - Swapping Columns Using the Divine Ratio for ...
    - Using the Golden Ratio in Liquid Web Page De...
    - Fundamental Design Principles for Web Page L...







    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 2 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek