Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Overlapping CSS Elements Re: Overlapping CSS Elements

#115981
otc
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