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.
在开发网站上,屏幕顶部有一些旋转文本。该网站是http 109.108.155.82
我已经加快了速度来解释这个问题。文本使用不同数量的字符,长文本将菜单向下推。反正有没有保持不变?
#tips, #tips li { height: 100px; list-style: none outside none; margin: 0; overflow: hidden; padding: 0; }
显然将高度更改为您想要的数字,并限制您在 li 本身中显示的字符以避免文本被截断。
杰伦
将的高度设置为<ul id="tips">最大内容的最大高度,例如
<ul id="tips">
#tips { height: 150px; }