Easy Html Tutorials

Stats

/

Notifs

Due to my lack of time for being online I can't answer questions anymore, but please use these tutorials to help you create a beautiful blog!

The results are in! Look here to see the survey responses.

NETWORKS

Support Me
Support easy-html-tutorials! If you enjoy my tutorials, consider adding one of the following to your blog!

Easy Html Tutorials
  pxurify asked:
  hey xx i was just wondering how do you get a picture to come up in the background when you hover on a link ive seen it before on some blogs :)

Find a: hover { and add this:

background: url(http://24.media.tumblr.com/tumblr_mbvyurHCBG1qg63fko1_500.jpg); -webkit-text-fill-color: transparent; -webkit-background-clip: text;

If you don’t have a:hover add this:

a:hover{ 
background: url(http://24.media.tumblr.com/tumblr_mbvyurHCBG1qg63fko1_500.jpg); -webkit-text-fill-color: transparent; 
-webkit-background-clip: text; }

Just change the url to whatever image you want!