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,但加载器正在将文本向下推。如何在同一行中获取加载程序和文本。
这是我的演示 http://jsfiddle.net/jFAyX/2/
你可以像这样设计你的加载器:
.loader{ width:13px; height:16px; position: absolute; margin-left: -10px; }
绝对定位可以相对于非静态定位的父元素定位元素,并且不会干扰静态定位的兄弟元素。如果它是静态的,它的位置将从它所在的位置开始。我将它向左移动了一点,使用负的左边距,这样它就不会覆盖面包屑文本。
只需制作 .loader 内联块
.loader{display:inline-block;}
小提琴