文本溢出省略号不受位置影响:相对

Text-overflow ellipsis not effected by position: relative

FIDDLE HERE

我有一张图片,下方有一个 span 和图片名称。

<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>

因为imagename可能太长,我在.myImageListEntry上有overflow: ellipsis;

现在我想将 span 10px 放在图片下方。 margin-top 和 padding-top 不起作用,所以我使用了这个:

.myImageName{
    position: relative;
    top: 10px;
}

span 中的文本距顶部 10px,但三个点 (...) 没有向下移动。

如何将省略号向下放置 10px?

我认为这不是一个好方法,文本 eclips 默认样式总是与文本对齐它如何移动到顶部。

请使用此代码。

.myImageName {
    display: inline-block;
    height: 22px;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 154px;
}

希望这对您有所帮助。谢谢

已更新jsfiddle

.myImageName{
  position: relative;
  top: 6px;
  vertical-align: super;
}

将省略号添加到包含文本的范围,而不是将图像和文本换行的 div

.myImageName {
    position: relative;
    top: 10px;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    overflow: hidden;
}

.myImageList{
  max-height: 320px;
}

.myImageListEntry{
  display: block;
  float: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 5px 5px 5px 5px;
  margin: 5px 5px 5px 5px;
  border: 1px solid rgb(128, 128, 128);
  border-radius: 10px;
  width: 150px;
  height: 150px;
  background-color: rgb(178, 178, 255);
}

.myImageListImage{
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: auto;
  margin-bottom: auto;
  max-width: 140px;
  max-height: 105px;
  cursor: pointer;
  margin-top: auto !important;
  line-height: 150px;
  vertical-align: middle;
}

.myImageName {
    position: relative;
    top: 10px;
    width: 100%;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    overflow: hidden;
}
<div class="myImageList  withScrollbars">
  <div class="myImageListEntry">
      <img style="width: 140px; height: 105px; margin-top: 17.5px;" src="//www.brukacm.nl/restcontent/uploads/734/349817438DE30553C1AE0D1ECAB91BE48BA0B26D/1/2/42aaaa23401f4cf6a3c0a6cc5f0cd9f0_JPG_thumbn.png" class="myImageListImage">
      <span class="myImageName">audsfsdfsdfsfsfsdfsdfgsdf43545345to1.JPG</span>
  </div>
  <div class="myImageListEntry">
    <img style="width: 140px; height: 125.3px; margin-top: 7.35px;" src="//www.brukacm.nl/restcontent/uploads/734/4F237AC78A20570E0E45E2115D1B13E06697F7AF/1/2/93503e0ebd5f4f079a879eb41785b3e3_png_thumbn.png" class="myImageListImage">
    <span class="myImageName">happyt.png</span>
  </div>
</div>