How do I remove the first empty column in a CSS grid?

前端 未结 3 1435
太阳男子
太阳男子 2021-01-20 07:21

I\'ve got an empty column at the start and can\'t work out why?

3条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2021-01-20 07:39

    I don't think it's an extra column.

    It looks like the default margin or padding added by browsers to list elements.

    Check the default styles on your ul.

    Also see this W3C default style sheet sample:

    Add this to your code:

    ul {
       margin: 0;
       padding: 0;
    }
    

提交回复
热议问题