html – 除了文本元素之外,CSS nowrap?

前端之家收集整理的这篇文章主要介绍了html – 除了文本元素之外,CSS nowrap?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
有没有办法避免div的包装
内容不仅仅是文本时,内容。几个按钮?

解决方法

空白:NOWRAP;应该做的伎俩
#foo {
  white-space:nowrap;
  width: 100px;
}
<div id="foo">
  <input type="button" value="hello"/>
  <input type="button" value="hello"/>
  <input type="button" value="hello"/>
  <input type="button" value="hello"/>
  <input type="button" value="hello"/>
  <input type="button" value="hello"/>
  <input type="button" value="hello"/>
</div>

Demo

原文链接:https://www.f2er.com/html/232850.html

猜你在找的HTML相关文章