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.
我的 jsFiddle
我想写
`playing Stephan Malkmus - Out of Reaches radio`
但它在小提琴中成为一行一行。
我怎样才能在一行中使用它?
添加
display: inline;
to #channelInfo(因为 div 元素默认是块元素)
#channelInfo
示例:http: //jsfiddle.net/c3QYp/
display:inline-block;
如果您需要为文本添加填充或边距。
您的 html 代码在语义上不正确, div 元素是具有块显示的标签,因此它占据了一行的空间。
对于内联元素,使用span作为内联标签的标签并在不使用 css 的情况下解决您的问题,而只需正确使用 HTML5 功能。
span
演示