美文网首页
vuepress + vuepress-theme-cool 使

vuepress + vuepress-theme-cool 使

作者: 云中漫步2125 | 来源:发表于2018-09-09 21:27 被阅读0次

    如何配置vuepress中的anchor(锚点)跳转时不被导航栏遮挡

    方法一, 仅对单个页面生效

    # 在需要处理这个问题的README.md中直接加入下面的样式
    <style>
    .content.custom>h1, 
    .content.custom>h2, 
    .content.custom>h3, 
    .content.custom>h4, 
    .content.custom>h5, 
    .content.custom>h6 {
        margin-top: -3.1rem;
        padding-top: 4.6rem;
        margin-bottom: 0;
    }
    </style>
    

    方法二,对整个项目生效

    # 在docs/.vuepress/style.styl中加入以下代码
    
    .content.custom>h1, 
    .content.custom>h2, 
    .content.custom>h3, 
    .content.custom>h4, 
    .content.custom>h5, 
    .content.custom>h6 {
        margin-top: -3.1rem;
        padding-top: 4.6rem;
        margin-bottom: 0;
    }
    
    

    相关文章

      网友评论

          本文标题:vuepress + vuepress-theme-cool 使

          本文链接:https://www.haomeiwen.com/subject/uswdgftx.html