Find all of the divs that are position: relative;

position: relative
position: absolute

$('#container').children() .filter(function() { return $(this).css('position') == 'relative'; }) .css("border","3px solid red");