Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一生都无法弄清楚为什么我不能将页面中间“样本”选项卡中的这个播放器中的歌曲标签向上移动,这样它们看起来更苗条和平衡。我需要一个更熟悉 css 的人来找出导致顶部和文本之间的空间的原因。我确信这是一个非常容易解决的问题。
http://www.remedyaudio.com
如果你给你<img>的 astyle="float:left"它将删除顶部高度。
<img>
style="float:left"
将float:left图像向左<span>对齐,允许从图像顶部而不是底部对齐。
float:left
<span>
#nice2Tab ul li img { float:left; }
$('#nice2Tab ul li img').each(function (){ $(this).css('float','left'); });