html - Manipulate second div with class = row -


i have following html code. possible manipulate second row element , how?

<style> .span11 row{} </style>  <div class="span11">     <div class="row"></div>     <div class="row"></div> </div> 

it works!

.row:nth-child(2){background:#000;} 

2 way:

  1. .row+.row{background:#000;}
  2. .row:nth-child(2){background:#000;}

Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -