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

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

I have the following html:

Item 1
  • Value 1
4条回答
  •  春和景丽
    2021-02-07 09:33

    How's this?

    dt, dd { display: block; float: left; margin-top: 20px; }
    dt { clear: both; }
    

提交回复
热议问题