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

前端 未结 9 2160
名媛妹妹
名媛妹妹 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:45

    Something like this should work

    h1, h2, h3 {
      background: url("the image link goes here") 0 center no-repeat;
      padding-left: 15px; /* change this to fit your needs */
    }
    

提交回复
热议问题