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
list-style-type
is reserved for ul
only.
You can use <h1 class="bullet">
with pseudo-element :before
.
Nope, list-style
and list-style-image
are only for ul
and ol
tags you'll have to get back to your first method or make something with js
http://www.w3schools.com/css/css_list.asp http://www.w3schools.com/cssref/pr_list-style-type.asp
Just use
<p>• </p>
to create a dot in front of your word