Removing space at the top left and right of div

后端 未结 9 1884
迷失自我
迷失自我 2020-12-01 13:02

I am starting to work with css and have basic issue.

I have a div element:

9条回答
  •  天命终不由人
    2020-12-01 13:08

    If you need some padding inside the div, you should choose padding:

    padding:top right bottom left;
    

    example:

    padding:5px; /* 5px padding at all sides)*/
    padding:5px 3px; /* top & bottom 5px padding but right left 3px padding) */
    padding:5px 3px 4px; /* top 5px, bottom 4px padding but left right 3px) */
    padding:1px 2px 3px 4px; /* top 1px, right 2px bottom 3px & left 4px) */
    

    Similarly to control the space outside the div, you can use margin.

    Margin will use exact same formula.

提交回复
热议问题