CSS 表现得很有趣

CSS is acting funny

我有一个简单的问题,但我已经打破了 3 个小时的头脑。我在 header 中使用 now-playing 脚本。我希望所有单词都在同一高度。那不是现在发生的事情。我看到艺术家,然后标题与艺术家不在同一行。不对,标题还剩很多(见图)

这是我的CSS

font-size: 12px;
display: block;
text-overflow: ellipsis;
word-wrap: break-word;
font-family: 'Roboto Consensed',sans-serif;

你可以看看here

我该怎么办?

删除 <div class="np_label"> 上的 left: 10px;,改用 margin-left: 40px;。这将告诉该块从向左偏移 40 像素处开始,因此将打破具有所述偏移量的单词。