{"id":10049,"date":"2016-10-18T13:52:28","date_gmt":"2016-10-18T12:52:28","guid":{"rendered":"http:\/\/themes.artivity.co.uk\/basix\/?p=10049"},"modified":"2016-10-18T13:52:28","modified_gmt":"2016-10-18T12:52:28","slug":"absolute-center-an-image-using-css","status":"publish","type":"post","link":"https:\/\/ceteris-paribus.com\/en\/absolute-center-an-image-using-css\/","title":{"rendered":"Absolute Center an Image using CSS"},"content":{"rendered":"<h3>CSS background-image Technique:<\/h3>\n<pre class=\"lang:css decode:true\">html { \n   width: 100%; \n   height: 100%; \n   background: url(logo.png) center center no-repeat;\n}<\/pre>\n<h3>CSS + Inline Image Technique:<del><\/del><\/h3>\n<pre class=\"lang:css decode:true \">img {\n   position: absolute;\n   top: 50%;\n   left: 50%;\n   width: 500px;\n   height: 500px;\n   margin-left: -250px; \/* Half the width *\/\n   margin-top: -250px; \/* Half the height *\/\n}<\/pre>\n<h3>Table technique:<\/h3>\n<pre class=\"lang:css decode:true\" title=\"CSS\">html, body, #wrapper {\n   height: 100%;\n   width: 100%;\n   margin: 0;\n   padding: 0;\n   border: 0;\n}\n#wrapper td {\n   vertical-align: middle;\n   text-align: center;\n}<\/pre>\n<pre class=\"lang:xhtml decode:true \" title=\"HTML\">&lt;html&gt;\n&lt;body&gt;\n   &lt;table id=\"wrapper\"&gt;\n      &lt;tr&gt;\n         &lt;td&gt;&lt;img src=\"logo.png\" alt=\"\" \/&gt;&lt;\/td&gt;\n      &lt;\/tr&gt;\n   &lt;\/table&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;<\/pre>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>CSS background-image Technique: html { width: 100%; height: 100%; background: url(logo.png) center center no-repeat; } CSS + Inline Image Technique: img { position: absolute; top: 50%; left: 50%; width: 500px; height: 500px; margin-left: -250px; \/* Half the width *\/ margin-top: -250px; \/* Half the height *\/ } Table technique: html, body, #wrapper { height: 100%; &#8230;<\/p>\n","protected":false},"author":1,"featured_media":10537,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5,1],"tags":[16],"class_list":["post-10049","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-code-snippets","category-uncategorized","tag-css"],"translation":{"provider":"WPGlobus","version":"3.0.2","language":"en","enabled_languages":["es","en"],"languages":{"es":{"title":true,"content":true,"excerpt":false},"en":{"title":false,"content":false,"excerpt":false}}},"_links":{"self":[{"href":"https:\/\/ceteris-paribus.com\/en\/wp-json\/wp\/v2\/posts\/10049","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ceteris-paribus.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ceteris-paribus.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ceteris-paribus.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ceteris-paribus.com\/en\/wp-json\/wp\/v2\/comments?post=10049"}],"version-history":[{"count":0,"href":"https:\/\/ceteris-paribus.com\/en\/wp-json\/wp\/v2\/posts\/10049\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ceteris-paribus.com\/en\/wp-json\/wp\/v2\/media\/10537"}],"wp:attachment":[{"href":"https:\/\/ceteris-paribus.com\/en\/wp-json\/wp\/v2\/media?parent=10049"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ceteris-paribus.com\/en\/wp-json\/wp\/v2\/categories?post=10049"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ceteris-paribus.com\/en\/wp-json\/wp\/v2\/tags?post=10049"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}