我有一个简短的文本,我必须在其旁边放置一个链接。链接不应以文本形式显示,而应以图像形式显示。到目前为止没有问题,但是要使用我必须设置的图像才能display:inline-block
设置标签的宽度/高度。一旦我这样做,从右边开始的下一个在包含的 div 中向下跳跃。我绝对无法向上移动它。代码是:
<div>
<p id="pid">Some prefixing text that shouldn't be at the bottom of the div but rather in the middle <a href="#" target="_blank">This is some link</a></p>
</div>
#pid {
border: 1px solid blue;
float: right;
}
#pid a {
display: inline-block;
width: 50px;
height: 53px;
}
那么我怎么能向上移动前缀文本呢?非常感谢!