Can I use CSS to add a bullet point to any element?

前端 未结 9 2143
名媛妹妹
名媛妹妹 2020-12-13 23:54

Pretty simple question, but I am not sure if it is possible. I want to add an image to act as a bullet in all

elements. I know I can achieve this b

9条回答
  •  执念已碎
    2020-12-14 00:44

    You could do something like this:

    h1:before {
        content:"• ";
    }
    

    See Fiddle :

    http://jsfiddle.net/6kt8jhfo/6/

提交回复
热议问题