Here\'s the code example I\'m having problems with:
http://jsfiddle.net/eejpjch3/
I\'m trying to add a dynamic delete button above HTML elements when hoverin
You have not specified position:relative to parent element of the delete button
you shoud add following class to your style sheet
.row-fluid {
position: relative;
}
Position absolute takes position with relative to its parents. for more reference you can check following link: http://www.w3schools.com/css/css_positioning.asp