How to draw multiple horizontal lines (Notebook Paper effect) using css?

前端 未结 4 745
死守一世寂寞
死守一世寂寞 2021-01-03 14:04

I am trying to make a notebook paper on my blog, and i wanted to make horizontal lines in it. I was successfully able to draw one horizontal line using css, but i am unable

4条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-03 14:52

    Here you go.

    .paper {
    background-image:url("data:image/gif;base64,R0lGODlhFgAsAJEAAP////n8/ePv9gAAACH5BAAHAP8ALAAAAAAWACwAAAInhI+py+0Po5y02ouz3rz7D4biSJbmiabqyrZuFsTyTNeBgOf6zgsFADs=");
    

    }

    Just Encode an image in base64 and it works fine.

    You can try encoding HERE.

提交回复
热议问题