CSS Rendering inconsistency on ul with Firefox being the odd ball out

前端 未结 6 1492
既然无缘
既然无缘 2021-02-01 18:03

Background

I was creating a secondary navigation menu using embedded unordered lists with anchors and headers. Using a CSS reset sheet all headers and anchors are set

6条回答
  •  青春惊慌失措
    2021-02-01 18:40

    hotfix:

    .dpe-flexible-posts li::before{
        content: '●';
        position: absolute;
        left: -14px;
        top: -1px;
    }
    .dpe-flexible-posts li{
        list-style-type: none;
        position: relative;
    }
    

提交回复
热议问题