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.
我一直在尝试使用以下方式显示此网页inline上的链接:
inline
<style type="text/css"> ul#nav li.top { display:inline; } </style>
但是,它似乎只适用于某些链接,即使它们都是该类的li元素.top。如果有人可以向我解释为什么这不起作用,我将不胜感激。
li
.top
元素内部有一些表格li。表格是块元素,它们关闭最后一个内联框。删除表格或使用display: inline-block.
display: inline-block
嗨,请像这样在您的 css 顶级类中添加一个属性。
.top{ display:inline-block; }