DevelopPHP
home Forum gear home

Libraries book

HTML Library CSS Library JavaScript Library PHP Library

Videosbook

PHP and MySQL JavaScript HTML and CSS Vector and 3D Flash Actionscript Android Dev Miscellaneous

Resourcesbook

Website Hosting
CSS id Selector example   Share / Like

The CSS id selector ( X#id { } or #id { } ) is used to target a unique element in the document. Only one HTML element may be given a unique ID attribute value in your web document, so naturally this is meant for unique element targeting as opposed to grouped or class styling of elements. If the element type is not specified in front the "#" symbol, any type of element in the document given this ID attribute value will be styled. If the element type is specified only that type of element in the document can be styled, while other types of elements that may be given the unique id will get bypassed in styling. The ID selectors can be used in conjunction with other selectors to extend its reach into the document.

CSS CODE EXAMPLE
<!DOCTYPE html>
<style type="text/css">
h3#myUnique1 {
    padding-left:10px;
    border:#06C 1px solid;
}
</style>
<h3 id="myUnique1">My heading content</h3>
<h3>My heading content</h3>
 

My heading content

My heading content

In the example below without the type specifier before the "#" symbol demonstrates how you can target any tag by the unique ID attribute value, regardless of element type. In the example above the element type must be "h3" in order to be styled.

CSS CODE EXAMPLE
<style type="text/css">
#myUnique1 {
    padding-left:10px;
    border:#06C 1px solid;
}
</style>
<h3>My heading content</h3>
<p id="myUnique1">My paragraph content...</p>
 

My heading content

My paragraph content...

 

Home   •   Terms of Use   •   Developer Forums   •   T-Shirts   •   RSS   •   Classroom Chalkboard   •   Donate   •   Top ↑
Popular In PHP / MySQL E-Commerce Store Production
Social Network Website Building
Image Upload / Photo Processing
CMS Software Programming
Mass Email Systems
Magic XML Data
Search Programming
Popular In JavaScript JSON Programming
Ajax Programming
Animating Elements
WYSIWYG Programming
Date/Time Programming
DOM Scripting
Object Reference
Popular In HTML Canvas Element
New Form Elements
Audio Element
Video Element
Drag and Drop
Event Handling
Element Grouping
Popular In CSS Custom Font Embedding
Dynamic Fit Backgrounds
Theatre Mode
Box Overlays
CSS Level 1 Properties
CSS Level 2 Properties
CSS Level 3 Properties
©2013 DevelopPHP   |   Navigate to related domains HTML5