- Is there an alternative to negative margins for item overlaying other item in css?
- <p>Image caption</p><img />
- <div><p>Image caption</p><img /></div>
- <div>
- <p>Image caption</p>
- <img />
- </div>
- div {
- position: relative;
- float:left;
- }
- p {
- position: absolute;
- top: 20px;
- left: 10px;
- }
- <p><span>Image caption<span></p><img />
- p{
- display:block
- margin-right -100%
- }