http://orgmode.org/worg/org-tutorials/org-beamer/tutorial.html
目录 float 是一个非常不错的功能。如何达到这个效果?
顺便说一句,我也在使用组织模式
最佳答案
看一下CSS
position: fixed;
right: 0em;
top: 0em;
这是demo的隔离列表,包括在悬停时扩展菜单。
HTML
<div id="toc">
hello
<div id="full">hey there<br />This is the full TOC</div>
</div>
CSS
#toc {
position: fixed;
right: 0;
top: 0;
background-color:#FFF;
}
#toc #full { display: none; } /* Hide the full TOC by default */
#toc:hover #full{
display: block; /* Show it on hover */
}
关于html - 如何使目录 float ?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12232675/