I am satisfied with my current lists, but I'm looking to take things to the next level. My idea is to use a background image (at least that's all I've come up with so far) to display each li
item on the corresponding line of the image. You can check out my jsFiddle, although it's not quite working as expected.
Here is the CSS:
ol {
display: inline-block;
background-image: url("http://pixelbrush.ru/uploads/posts/2013-01/1359314378_0001-2.jpg");
background-size: contain;
background-repeat: no-repeat;
}
Do you think this is possible? If so, how would I go about implementing it?
Please note that I am open to changing the image if it will make this concept work better.