I have a image and below I have a span
with the imagename.
<div class="myImageList withScrollbars">
<div class="myImageListEntry">
<img style="width: 140px; height: 105px; margin-top: 17.5px;" src="..._thumbn.png" class="myImageListImage">
<span class="myImageName">audsfsdfsdfsfsfsdfsdfgsdf43545345to1.JPG</span>
</div>
</div>
Because the imagename can be too long, I have overflow: ellipsis;
on the .myImageListEntry
.
Now I wanted to place the span
10px below the image. margin-top and padding-top did not work, so I used this:
.myImageName{
position: relative;
top: 10px;
}
The text in the span is placed 10px from the top, but the three dots (...
) are not moving down.
How can I place the ellipsis 10px down?