nth-child classes !!

drwebsitesuk

New member
Joined
May 14, 2014
Messages
94
Points
0
HI Everyone !

How to use nth-child, first-child and last-child classes in css ?

thanks in advance
 

webdesign

New member
Joined
Jul 5, 2012
Messages
228
Points
0
To know about nth-child, first-child and last-child classes in css, we can see the example, it will be easier to understand.
Code:
<ul>
	<li><span></span></li>
	<li><span></span></li>
	<li><span></span></li>
	<li><span></span></li>
	<li><span></span></li>
	<li><span></span></li>
	<li><span></span></li>
	<li><span></span></li>
	<li><span></span></li>
	<li><span></span></li>
	<li><span></span></li>
	<li><span></span></li>
</ul>
Css code:
Code:
li:nth-child(8) span {
    background-color: red;   
}
then Li number 8 will have red background

Code:
li:nth-last-child span {
    background-color: green;   
}
then last Li (number 12) will have green background

Code:
li:nth-first-child span {
    background-color: black;   
}
then Li number 1 will have black background

Sometimes, I used to use this technique to identify exact classes that I want to make it in style
 

hudafaeq

New member
Joined
May 9, 2014
Messages
11
Points
0
Define nth span code in css or Search on google for tutorial I am sure you will found many
 
Newer threads
Replies
9
Views
5,607
Replies
6
Views
4,801
Replies
8
Views
8,798
Replies
9
Views
7,940
Replies
1
Views
3,163
Latest threads
Replies
1
Views
157
Replies
0
Views
114
Replies
1
Views
190
Recommended threads

Referral contests

Referral link for :

Popular Contributors - Past 30 Days

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