Add bullet styling to dd element

前端 未结 4 788
春和景丽
春和景丽 2020-12-16 12:26

I am using dl, dt and dd tags in one of my projects. I want to show a bullet before dd. How can I make my dd

4条回答
  •  -上瘾入骨i
    2020-12-16 13:13

    Use a background-image.

    Or try:

    dd
    {
        display: list-item;
        list-style-type: disc;
    }
    

    No idea if it will work though.

提交回复
热议问题