{"id":19749,"date":"2014-04-04T13:01:28","date_gmt":"2014-04-04T05:01:28","guid":{"rendered":"https:\/\/www.hongkiat.com\/blog\/?p=19749"},"modified":"2025-04-04T01:43:52","modified_gmt":"2025-04-03T17:43:52","slug":"box-sizing-polyfills","status":"publish","type":"post","link":"https:\/\/www.hongkiat.com\/blog\/box-sizing-polyfills\/","title":{"rendered":"How to Enable Box Sizing in Internet Explorer for Better Compatibility"},"content":{"rendered":"<p><strong>Note:<\/strong> This post was first published on Apr 4, 2014.<\/p>\n<p>We have covered <a href=\"https:\/\/www.hongkiat.com\/blog\/css3-box-sizing\/\">CSS3 Box Sizing<\/a> in a previous article. Box Sizing, with the value of <code>border-box<\/code>, allows us to keep the element width and height the same, no matter the added padding and border.<\/p>\n<p>This makes <strong>measuring and defining element size easier<\/strong>. However, CSS3 Box Sizing does not work in Internet Explorer 7 (IE7) and earlier versions, as shown below.<\/p>\n<p>Both of the columns in the above screenshot have <code>width<\/code>, <code>height<\/code>, <code>padding<\/code>, and <code>box-sizing<\/code> specified. But since IE8 does not recognize the <code>box-sizing<\/code> property, the <strong>second column is pushed down<\/strong> when their <strong>total width exceeds the parent container\u2019s width<\/strong>.<\/p>\n<p>You will have to adjust the size for each column accordingly to make them fit, which could be a very tedious task <strong>depending on the number of elements you need to handle<\/strong>. If your website needs to support IE7 while also preserving CSS3 Box Sizing, you can use the following trick.<\/p>\n<div class=\"ref-block ref-block--post\" id=\"ref-post-1\">\n\t\t\t\t\t<a href=\"https:\/\/www.hongkiat.com\/blog\/html5-shiv-polyfills\/\" class=\"ref-block__link\" title=\"Read More: Understanding HTML5 Shiv and Polyfills\" rel=\"bookmark\"><span class=\"screen-reader-text\">Understanding HTML5 Shiv and Polyfills<\/span><\/a>\n<div class=\"ref-block__thumbnail img-thumb img-thumb--jumbo\" data-img='{ \"src\" : \"https:\/\/assets.hongkiat.com\/uploads\/thumbs\/250x160\/html5-shiv-polyfills.jpg\" }'>\n\t\t\t\t\t\t\t<noscript>\n<style>.no-js #ref-block-post-16029 .ref-block__thumbnail { background-image: url(\"https:\/\/assets.hongkiat.com\/uploads\/thumbs\/250x160\/html5-shiv-polyfills.jpg\"); }<\/style>\n<\/noscript>\n\t\t\t\t\t\t<\/div>\n<div class=\"ref-block__summary\">\n<h4 class=\"ref-title\">Understanding HTML5 Shiv and Polyfills<\/h4>\n<p class=\"ref-description\">\n\t\t\t\t\t\tUpdates: Loading Polyfills is no longer a common practice to provide compatibility. You will find that a few...\t\t\t\t\t\t<span>Read more<\/span><\/p>\n<\/div>\n<\/div>\n<h2>Box Sizing Polyfill<\/h2>\n<p>To make IE8 (and below) acknowledge <strong>Box Sizing<\/strong>, we can use a polyfill. This polyfill comes in the form of an HTC file and is developed by <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/twitter.com\/derSchepp\">Christian Schaefer<\/a>. Download the file from the Github repository and place it in, for example, your CSS folder.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/box-sizing-polyfills\/file-place.jpg\" alt=\"Box Sizing Polyfill file location\" height=\"180\" width=\"500\"><\/figure>\n<p>Create a CSS stylesheet specifically for Internet Explorer. Add the link in the HTML document this way so it will only be served in IE7.<\/p>\n<pre>\r\n&lt;!--[if lte IE7]&gt;\r\n&lt;link rel=\"stylesheet\" href=\"css\/ie.css\"&gt;\r\n&lt;![endif]--&gt;\r\n<\/pre>\n<p>Then put the following code in the <strong>ie.css<\/strong>. This CSS rule below will apply <code>box-sizing<\/code> to all elements.<\/p>\n<pre>\r\nbehavior: url(css\/boxsizing.htc);\r\n}\r\n<\/pre>\n<p>A few things to note when applying this trick:<\/p>\n<p>The URL path of <strong>boxsizing.htc<\/strong> must be relative to the HTML file\u2019s location; otherwise, it will not work.<\/p>\n<p>Paul Irish also has <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/www.paulirish.com\/2012\/box-sizing-border-box-ftw\/\">a tip<\/a> to apply <code>box-sizing<\/code> in pseudo-elements with <code>*:before, *:after<\/code>. But, since IE7 and IE6 do not support pseudo-elements, there is no reason to use pseudo-element selectors in this case. As you can see above, we don\u2019t include them in the code either.<\/p>\n<h2>The Result<\/h2>\n<p>Here, we have two columns with the parent container\u2019s width set to 500px. The column widths are set to 50%, so each column should have a width of 250px, even though we also set padding for it. Let\u2019s open Internet Explorer 7 and launch the Developer Tool (F12).<\/p>\n<p>Go to the <strong>Layout<\/strong> tab of the Developer Tool to see the column size in detail. You should see that in IE7, the column now includes padding as well as borders as part of the total size. In our case, the box width remains at 250px.<\/p>\n<figure><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/assets.hongkiat.com\/uploads\/box-sizing-polyfills\/final.jpg\" alt=\"Final result of box sizing polyfill\" height=\"320\" width=\"500\"><\/figure>","protected":false},"excerpt":{"rendered":"<p>Note: This post was first published on Apr 4, 2014. We have covered CSS3 Box Sizing in a previous article. Box Sizing, with the value of border-box, allows us to keep the element width and height the same, no matter the added padding and border. This makes measuring and defining element size easier. However, CSS3&hellip;<\/p>\n","protected":false},"author":113,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[352],"tags":[507,4501],"topic":[4520],"class_list":["entry-content","is-maxi"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v22.8 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Enable Box Sizing in Internet Explorer 7<\/title>\n<meta name=\"description\" content=\"Note: This post was first published on Apr 4, 2014. We have covered CSS3 Box Sizing in a previous article. Box Sizing, with the value of border-box,\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.hongkiat.com\/blog\/box-sizing-polyfills\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Enable Box Sizing in Internet Explorer for Better Compatibility\" \/>\n<meta property=\"og:description\" content=\"Note: This post was first published on Apr 4, 2014. We have covered CSS3 Box Sizing in a previous article. Box Sizing, with the value of border-box,\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hongkiat.com\/blog\/box-sizing-polyfills\/\" \/>\n<meta property=\"og:site_name\" content=\"Hongkiat\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/hongkiatcom\" \/>\n<meta property=\"article:published_time\" content=\"2014-04-04T05:01:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-03T17:43:52+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/assets.hongkiat.com\/uploads\/box-sizing-polyfills\/file-place.jpg\" \/>\n<meta name=\"author\" content=\"Thoriq Firdaus\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@tfirdaus\" \/>\n<meta name=\"twitter:site\" content=\"@hongkiat\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Thoriq Firdaus\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/box-sizing-polyfills\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/box-sizing-polyfills\\\/\"},\"author\":{\"name\":\"Thoriq Firdaus\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/e7948c7a175d211496331e4b6ce55807\"},\"headline\":\"How to Enable Box Sizing in Internet Explorer for Better Compatibility\",\"datePublished\":\"2014-04-04T05:01:28+00:00\",\"dateModified\":\"2025-04-03T17:43:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/box-sizing-polyfills\\\/\"},\"wordCount\":426,\"commentCount\":6,\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/box-sizing-polyfills\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/box-sizing-polyfills\\\/file-place.jpg\",\"keywords\":[\"CSS\",\"CSS Tutorials\"],\"articleSection\":[\"Web Design\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/box-sizing-polyfills\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/box-sizing-polyfills\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/box-sizing-polyfills\\\/\",\"name\":\"How to Enable Box Sizing in Internet Explorer 7\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/box-sizing-polyfills\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/box-sizing-polyfills\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/box-sizing-polyfills\\\/file-place.jpg\",\"datePublished\":\"2014-04-04T05:01:28+00:00\",\"dateModified\":\"2025-04-03T17:43:52+00:00\",\"description\":\"Note: This post was first published on Apr 4, 2014. We have covered CSS3 Box Sizing in a previous article. Box Sizing, with the value of border-box,\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/box-sizing-polyfills\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/box-sizing-polyfills\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/box-sizing-polyfills\\\/#primaryimage\",\"url\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/box-sizing-polyfills\\\/file-place.jpg\",\"contentUrl\":\"https:\\\/\\\/assets.hongkiat.com\\\/uploads\\\/box-sizing-polyfills\\\/file-place.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/box-sizing-polyfills\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Enable Box Sizing in Internet Explorer for Better Compatibility\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"name\":\"Hongkiat\",\"description\":\"Tech and Design Tips\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\",\"name\":\"Hongkiat.com\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"contentUrl\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"width\":1200,\"height\":799,\"caption\":\"Hongkiat.com\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/hongkiatcom\",\"https:\\\/\\\/x.com\\\/hongkiat\",\"https:\\\/\\\/www.pinterest.com\\\/hongkiat\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/e7948c7a175d211496331e4b6ce55807\",\"name\":\"Thoriq Firdaus\",\"description\":\"Thoriq is a writer for Hongkiat.com with a passion for web design and development. He is the author of Responsive Web Design by Examples, where he covered his best approaches in developing responsive websites quickly with a framework.\",\"sameAs\":[\"https:\\\/\\\/thoriq.com\",\"https:\\\/\\\/x.com\\\/tfirdaus\"],\"jobTitle\":\"Web Developer\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/author\\\/thoriq\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Enable Box Sizing in Internet Explorer 7","description":"Note: This post was first published on Apr 4, 2014. We have covered CSS3 Box Sizing in a previous article. Box Sizing, with the value of border-box,","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.hongkiat.com\/blog\/box-sizing-polyfills\/","og_locale":"en_US","og_type":"article","og_title":"How to Enable Box Sizing in Internet Explorer for Better Compatibility","og_description":"Note: This post was first published on Apr 4, 2014. We have covered CSS3 Box Sizing in a previous article. Box Sizing, with the value of border-box,","og_url":"https:\/\/www.hongkiat.com\/blog\/box-sizing-polyfills\/","og_site_name":"Hongkiat","article_publisher":"https:\/\/www.facebook.com\/hongkiatcom","article_published_time":"2014-04-04T05:01:28+00:00","article_modified_time":"2025-04-03T17:43:52+00:00","og_image":[{"url":"https:\/\/assets.hongkiat.com\/uploads\/box-sizing-polyfills\/file-place.jpg","type":"","width":"","height":""}],"author":"Thoriq Firdaus","twitter_card":"summary_large_image","twitter_creator":"@tfirdaus","twitter_site":"@hongkiat","twitter_misc":{"Written by":"Thoriq Firdaus","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.hongkiat.com\/blog\/box-sizing-polyfills\/#article","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/box-sizing-polyfills\/"},"author":{"name":"Thoriq Firdaus","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/e7948c7a175d211496331e4b6ce55807"},"headline":"How to Enable Box Sizing in Internet Explorer for Better Compatibility","datePublished":"2014-04-04T05:01:28+00:00","dateModified":"2025-04-03T17:43:52+00:00","mainEntityOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/box-sizing-polyfills\/"},"wordCount":426,"commentCount":6,"publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/box-sizing-polyfills\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/box-sizing-polyfills\/file-place.jpg","keywords":["CSS","CSS Tutorials"],"articleSection":["Web Design"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.hongkiat.com\/blog\/box-sizing-polyfills\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.hongkiat.com\/blog\/box-sizing-polyfills\/","url":"https:\/\/www.hongkiat.com\/blog\/box-sizing-polyfills\/","name":"How to Enable Box Sizing in Internet Explorer 7","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/box-sizing-polyfills\/#primaryimage"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/box-sizing-polyfills\/#primaryimage"},"thumbnailUrl":"https:\/\/assets.hongkiat.com\/uploads\/box-sizing-polyfills\/file-place.jpg","datePublished":"2014-04-04T05:01:28+00:00","dateModified":"2025-04-03T17:43:52+00:00","description":"Note: This post was first published on Apr 4, 2014. We have covered CSS3 Box Sizing in a previous article. Box Sizing, with the value of border-box,","breadcrumb":{"@id":"https:\/\/www.hongkiat.com\/blog\/box-sizing-polyfills\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hongkiat.com\/blog\/box-sizing-polyfills\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/box-sizing-polyfills\/#primaryimage","url":"https:\/\/assets.hongkiat.com\/uploads\/box-sizing-polyfills\/file-place.jpg","contentUrl":"https:\/\/assets.hongkiat.com\/uploads\/box-sizing-polyfills\/file-place.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/www.hongkiat.com\/blog\/box-sizing-polyfills\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.hongkiat.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Enable Box Sizing in Internet Explorer for Better Compatibility"}]},{"@type":"WebSite","@id":"https:\/\/www.hongkiat.com\/blog\/#website","url":"https:\/\/www.hongkiat.com\/blog\/","name":"Hongkiat","description":"Tech and Design Tips","publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hongkiat.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.hongkiat.com\/blog\/#organization","name":"Hongkiat.com","url":"https:\/\/www.hongkiat.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","contentUrl":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","width":1200,"height":799,"caption":"Hongkiat.com"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/hongkiatcom","https:\/\/x.com\/hongkiat","https:\/\/www.pinterest.com\/hongkiat\/"]},{"@type":"Person","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/e7948c7a175d211496331e4b6ce55807","name":"Thoriq Firdaus","description":"Thoriq is a writer for Hongkiat.com with a passion for web design and development. He is the author of Responsive Web Design by Examples, where he covered his best approaches in developing responsive websites quickly with a framework.","sameAs":["https:\/\/thoriq.com","https:\/\/x.com\/tfirdaus"],"jobTitle":"Web Developer","url":"https:\/\/www.hongkiat.com\/blog\/author\/thoriq\/"}]}},"jetpack_featured_media_url":"https:\/\/","jetpack_shortlink":"https:\/\/wp.me\/p4uxU-58x","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/19749","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/users\/113"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/comments?post=19749"}],"version-history":[{"count":3,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/19749\/revisions"}],"predecessor-version":[{"id":73675,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/19749\/revisions\/73675"}],"wp:attachment":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/media?parent=19749"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/categories?post=19749"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/tags?post=19749"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/topic?post=19749"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}