Home › Forums › CSS › Overlapping CSS Elements › Re: Overlapping CSS Elements
November 29, 2012 at 7:25 pm
#115981
Participant
Hello,
You have many solutions however if you want something to be at a very specific position you should make its position to relative and play with the top/right/bottom/left properties.
Example:
.excerpt {
position: relative;
top: 5px;
width: 100%;
padding: 25px 0;
border-bottom: 1px solid #DDD;
overflow: hidden;
clear: both
}
Good luck