CSS:
with spacing/margin between the dt/dd pairs

前端 未结 4 1441
花落未央
花落未央 2021-02-07 09:06

I have the following html:

Item 1
  • Value 1
4条回答
  •  逝去的感伤
    2021-02-07 09:24

    Is your 'Item 2' dd truly empty or does it have a   in it? If it is empty, it will be hard to get the dt/dd to line up correctly because the other dd's will have a height of 20px (for example) and the empty dd will have a height of 0.

    Be careful with the margin-top, you will have to apply it to both the dt and dd.

    I prefer to use padding on the bottom of the dd. It gives more consistent results.

    dt {
        float: left;
        clear: left;
        width: 8em;
        }
     dd {
        margin: 0 0 0 9em;
         padding: 0 0 2.5em 0;
        }
    

提交回复
热议问题