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 语句将有限数量的 div 彼此相邻放置,而没有制作“换行符/换行符/换行”并具有定义宽度的包装器?
就像将 100 个宽度为 200 像素、高度为 60 像素的 div 并排放置在一条线上,而包装容器没有固定宽度?
div应该有CSS:
display:inline-block;
以及围绕它们的包含 div:
white-space:nowrap;
尝试这个
.yourclass{ float:left; width:200px; height:60px; }
工作链接http://jsfiddle.net/TmSdx/