I make an easy div hover show and hide introduce words with jQuery, in the default code. All the introduced words position is relative. the introduce words div’s of box4 and box8 will out of the div#main.
and how to do? so that the introduce words div of box4 and box8 will make a right align?
For I can not describe well in english, I make a picture. you can see when hover in box4, the introduce words div’s right will not out of the div#main, this is what I need. Thanks.
code link here: http://jsfiddle.net/KTGUz/
image: 
Pure jQuery way is
$('.box:nth-child(4n+4)').addClass('oy');and adjust your positioning to make the.boxrelative and the.hoverabsolute, making.oy {right: 0;}Here’s the stuff: http://jsfiddle.net/3jGdm/