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.
我有一个 div,里面有一些内容。现在我想水平对齐元素。我使用过display : inline;,但现在我遇到了一个问题,即当元素达到 div 的宽度时,会出现内部换行符。所以实际上我正在寻找一个所有元素水平对齐并且在 div 内不会有换行符的 css 命令。
display : inline;
感谢您的帮助。
采用
white-space: nowrap;
在封闭<div>以防止任何换行符。在此处查看 MDN 文档。
<div>
尝试添加width:100%您的 div。
width:100%