Relative Content

Tag Archive for htmlcssimage

Issue with live preview & other live servers

so the issue is that none of live server/preview is working when I try to check my website. It’s only trying to load it but always fails & I can’t keep working due that. To me it seems like internet problem but if I had internet issues I wouldn’t be able to do other things which I can.enter image description hereenter image description here

how to center background image added by image sprites

<!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <title>Document</title> <style> .social-media-icon{ display: inline-block; } .social-media-icon a{ text-decoration: none; display: block; text-indent: -9999px; border: 2px solid #c3d4e2; position: relative; height: 36px; width: 36px; background: url(/img/social-icons.png) ; background-repeat: no-repeat; background-position: 50%; } .social-media-icon a:hover{ background-color: #c3d4e2; } .fb-icon a{ background-position: 0 0 ; } […]