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。
我试过了:
position: absolute; bottom: 8px; right: 16px;
但后来我的幻灯片消失了..
请试试:
position: relative; bottom: 10px; right: 16px;
除了您的代码之外,您还需要使幻灯片相对,它应该可以工作。
.slide {position: relative}
另一种解决方案是在幻灯片和标题上使用弹性显示。