CSS Pseudo selectors: before,: after,: focus and: first-child

Tommy

Moderator
Joined
Sep 28, 2012
Messages
370
Points
43
In the series on CSS selectors, I'm going to talk today about some special selectors. At first two selectors for additional text to generate,: before and: after. In addition, the pseudo selector: first-child and: focus.

: Before

The pseudo-element can something with no other selector can, namely the pre-come of content in an element.

An example. Suppose you have a list of links, but some links are more valuable. If it were a power tip.

These links can precede it with the text "Hot tip". This can of course do this in your HTML code by adding text, but with the: before selector can make life easier.

This may sometimes be useful if you customize the design of your site without the HTML code to come. Easy external adjustments do you do with your CSS.

Easily add

A: before selector is easy to insert. First, create a class that we called 'tip' give (. Tip so). Add this class to the paragraph or link that gets the extra addition. For instance
View Raw Code?

HTML:
<a href="link.htm" class="tip"> Link Text </ a>
To your CSS style sheet, add the following code:

HTML:
a.tip: before {content: "Super Tip!" }
Try it in browser to see your result ! :D
 
Newer threads
Replies
24
Views
11,604
Replies
4
Views
4,565
Replies
22
Views
8,872
Replies
3
Views
2,142
Latest threads
Replies
1
Views
92
Replies
1
Views
97
Replies
1
Views
161
Replies
1
Views
197
Replies
1
Views
277

Referral contests

Referral link for :

Sponsors

Popular tags

You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an alternative browser.

Top