{"id":139666,"date":"2015-12-30T11:00:09","date_gmt":"2015-12-30T17:00:09","guid":{"rendered":"https:\/\/getflywheel.com\/?p=14698"},"modified":"2024-01-18T16:14:41","modified_gmt":"2024-01-18T22:14:41","slug":"rems-ems-and-pixels-whats-the-difference","status":"publish","type":"resource","link":"https:\/\/wpengine.com\/case-studies\/resources\/rems-ems-and-pixels-whats-the-difference\/","title":{"rendered":"Rems, Ems, and Pixels. What&#8217;s the Difference?"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">If you open up any website stylesheet you\u2019ll come across rems, ems, or pixels, or any combination of those. In CSS styling, these are the main units of measurements that are used. Whether you are designing a site from scratch, or if you have \u201cinherited\u201d a previously designed site that you need to maintain, these are important for typography, spacing, and other sizing in the visual design.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">What makes one unit of measurement better than another? There isn\u2019t a definite answer, and depending on the situation, one might be preferred over another. Knowing the use case and what will work best will help determine the best measurement for your styling.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Pixels<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Since the early days of the web, pixels have been an option that is found in stylesheets everywhere. They are reliable, precise, and their consistency cannot be matched. Pixels are supported in all browsers, which makes them easy to work with.<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img decoding=\"async\" src=\"https:\/\/getflywheel-images.s3.us-east-2.amazonaws.com\/uploads\/2015\/12\/pixels1.jpg\" alt=\"pixels\" class=\"wp-image-14729\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Although pixels are great, they do have some limitations. Because they are such a set measurement, users cannot change the size of default browser text in the browser settings. Things do not scale up like they do with ems and rems, making changing size difficult from an accessibility point of view for the user. One can argue that a user can just zoom in, rather than going into the browser settings. There\u2019s no one right or wrong answer, it is just something to keep in mind.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">What are They?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Pixels are a unit of measurement that are based on set sizing. &nbsp;They are the unit for measuring dimensions on a screen and are used when precise design is required. We say things like \u201cpixel resolution,\u201d so we are used to this measurement.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">An example would look something like this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>.main-header p {\nfont-size: 14px;\n}<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Pixels have their use in web design, but in the era of device agnostic web design, screen measurements are not the main focus. It\u2018s all about how to make our content fit best on countless devices, so there are ems and rems that can help with that.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Ems<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">This unit of measurement has a long history. It goes back to 1996 and has been around since the early days of CSS. Pixels were considered to be the best practice, so ems weren\u2019t as popular in those early days. They\u2019ve since gained popularity because their purpose is to serve as a unit that is relative to font size in specific content and they help with consistency.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">What are They?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">If you\u2019re big into classic typography, you probably recognized \u201cem,\u201d because it is a unit of measurement that originates from the world of printed type. Using this as a unit in typography, this measurement is equal to the currently specified point size. For example, one em in a 16-point typeface is 16 points. This unit is the same for all typefaces at a given point size.<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img decoding=\"async\" src=\"https:\/\/getflywheel-images.s3.us-east-2.amazonaws.com\/uploads\/2015\/12\/typography.jpg\" alt=\"typography\" class=\"wp-image-14727\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">We\u2019re not talking about print here, so how do ems figure into web design? Relative sizing is a big selling point to ems because it helps control the sizing of elements as they relate to others. Ems can function as great building blocks to website elements because of the fact that em values compound. It\u2019s important to really understand how this compounding works, though.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Understanding Ems<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">In most cases, unless browser default is set to something else, an em is 16 px. When you see 1.5 em, that would make it 24 pixels. It\u2019s not always that simple though. What happens when nesting is involved? It can be both convenient and confusing. Knowing how things work when working with ems will certainly help solve any mystery. What is the size of the \u201cI\u2019m nested\u201d paragraph below?<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&amp;amp;amp;amp;lt;div class=&amp;amp;amp;quot;one&amp;amp;amp;quot;&amp;amp;amp;amp;gt;\n&amp;amp;amp;amp;lt;div class=&amp;amp;amp;quot;two&amp;amp;amp;quot;&amp;amp;amp;amp;gt;\n&amp;amp;amp;amp;lt;div class=&amp;amp;amp;quot;three&amp;amp;amp;quot;&amp;amp;amp;amp;gt;\n&amp;amp;amp;amp;lt;p&amp;amp;amp;amp;gt;I\u2019m nested&amp;amp;amp;amp;lt;\/p&amp;amp;amp;amp;gt;\n&amp;amp;amp;amp;lt;\/div&amp;amp;amp;amp;gt;\n&amp;amp;amp;amp;lt;\/div&amp;amp;amp;amp;gt;\n&amp;amp;amp;amp;lt;\/div&amp;amp;amp;amp;gt;<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>.one, .two {\n\nfont-size: 0.5em;\n\n}\n\n.three {\n\nfont-size: 2em;\n\n}<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">There are three divs here, and the paragraph is fairly nested. With the cascading of the DOM, you may have to do some detective work. Let\u2019s say we are working with an em of 16px, since that is most common.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The <code>.one<\/code> class is multiplying 1em by 0.5, which is 0.5 em or 8 px. With the <code>.two<\/code> class, this is once again multiplying by 0.5, which is .25 em or 4px. Things are getting pretty small, so the class of <code>.three<\/code> will help. We will be taking the .25 em and multiplying this by 2. The result is 0.5 em or 8px.<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img decoding=\"async\" src=\"https:\/\/getflywheel-images.s3.us-east-2.amazonaws.com\/uploads\/2015\/12\/browser-type-settings.png\" alt=\"browser-type-settings\" class=\"wp-image-14723\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">One thing that may help is setting a size on the HTML element. Something like this will specify the set em size, instead of relying on the em set by the browser. Let\u2019s set 1 em to 20px. If this was used with the example above, the same principles with nesting would apply. Keep in mind though, we\u2019ve specified a pixel size, so that will affect the ability to scale the text by using the browser setting option.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>html {\n\nfont-size: 20px;\n\n}<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">In addition to pixels, font size can also be set with a percentage. The point being is that ems can work alongside other units of measurements. You will surely encounter this, as it is pretty common to set the body font to a percentage to help set a baseline. Let\u2019s say the font size starts off as 62.5% of the em size. With an em size of 16px, the font size would be 10px.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>body {\n\nfont-size:62.5%;\n\n}<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Once you have an understanding, ems can be a good asset to your project. Sizing the text of sub-elements to their parent elements can certainly come in handy. Also, ems make it easy to specify larger padding on the text container than what may be found in word spacing, making it follow the visual rule of proximity. Related items will be grouped visually, with less clutter, and provide an organized layout.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Another great feature of ems is the accessibility advantages. Because it is relative to the root of the DOM, ems make it perfect for resizing the whole design based on user preferences. In the browser preferences, you can easily change the default font size, which then changes the calculations, in ems, to the whole website.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Rems<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">What are They?<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Rems are a fairly recent addition to the CSS timeline. This unit of measurement was introduced with CSS3 and solves some of the issues with pixels and ems. With a name similar to \u201cems,\u201d you may be wondering what the \u201cr\u201d stands for. It comes from the term of \u201cRoot EM.\u201d<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The root is the HTML element. The sizing specified on the HTML element is the basis for this measurement. You will see that we\u2019ve used em sizing on the HTML element; it is okay to combine the two measurement types.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>html {\nfont-size: 1em;\n}\n.one {\nfont-size: 1.2rem; \/* 1.2 x the value set in html *\/\n}<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">Modern browsers support rems, but be sure to check with BrowserStack what older browsers you need to support before committing to rems. Don\u2019t let older browsers hold you back though; you can always specify a pixel fallback for anything below IE9. Modern browsers ignore the pixels because they prefer rems. It could look something like this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>.my-text {\n\nfont-size: 24px;\n\nfont-size: 1.5rem;\n\n}<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Understanding Rems<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">Remember the math we had to do for the nested elements of ems? That is not necessary with rems. It\u2019s all based on that root element. We don\u2019t have to worry about parent elements, it is always based on the root.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&amp;amp;amp;amp;lt;div class=&amp;amp;amp;quot;one&amp;amp;amp;quot;&amp;amp;amp;amp;gt;\n&amp;amp;amp;amp;lt;div class=&amp;amp;amp;quot;two&amp;amp;amp;quot;&amp;amp;amp;amp;gt;\n&amp;amp;amp;amp;lt;div class=&amp;amp;amp;quot;three&amp;amp;amp;quot;&amp;amp;amp;amp;gt;\n&amp;amp;amp;amp;lt;p&amp;amp;amp;amp;gt;I\u2019m nested&amp;amp;amp;amp;lt;\/p&amp;amp;amp;amp;gt;\n&amp;amp;amp;amp;lt;\/div&amp;amp;amp;amp;gt;\n&amp;amp;amp;amp;lt;\/div&amp;amp;amp;amp;gt;\n&amp;amp;amp;amp;lt;\/div&amp;amp;amp;amp;gt;<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>html {\n\nfont-size: 1em;\n\n}\n\n.one, .two {\n\nfont-size: 0.52em;\n\n}\n\n.three {\n\nfont-size: 2rem;\n\n}<\/code><\/pre>\n\n\n\n<p class=\"wp-block-paragraph\">There are three divs here, and the paragraph is fairly nested like we saw in the em example. Again, let\u2019s say we are working with an em size of 16px.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">The <code>.one<\/code> and <code>.two<\/code> classes have sizes assigned, but they don\u2019t really matter here because nesting isn\u2019t affected with rems like it is with ems. All that really matters is the styling of .three, which is 2 ems. The paragraph would be based on the HTML element of 1em. This measurement would be doubled, giving us 2 rems or 32 pixels.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Want to evenly scale everything up? Just adjust the root element size. This is also helpful when adjusting browser default size. You could see how ems allowed for that, rems do also.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">There is a lot less to worry about concerning unpredictable nesting behavior with rems. It is easy to understand where the root element comes into play and how that affects your styling when using rems.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">When comparing the different measurements, you can see that they have their pros and cons. Really understanding how the units of measurement work, and how they work with browser settings, will help you choose which will work best for the situation or project.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Make Your Site Pixel Perfect with WP Engine<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">To make sure every single pixel of your site loads quickly and seamlessly, you need high-quality <a href=\"https:\/\/wpengine.com\/wordpress-hosting\/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress hosting<\/a>. Check out <a href=\"https:\/\/wpengine.com\/plans\/\" target=\"_blank\" rel=\"noreferrer noopener\">WP Engine&#8217;s plans<\/a> to find the one that&#8217;s right for you!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you open up any website stylesheet you\u2019ll come across rems, ems, or pixels, or any combination of those. In CSS styling, these are the main units of measurements that are used. Whether you are designing a site from scratch, or if you have \u201cinherited\u201d a previously designed site that you need to maintain, these<span class=\"tile__ellipses\">&hellip;<\/span><span class=\"tile__ellipses--animated\"><\/span><\/p>\n","protected":false},"author":1,"featured_media":140903,"template":"","resource-topic":[1396],"resource-role":[1397],"resource-type":[916],"class_list":["post-139666","resource","type-resource","status-publish","has-post-thumbnail","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v20.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Rems, Ems, and Pixels. What&#039;s the Difference?<\/title>\n<meta name=\"description\" content=\"Rems, ems, and pixels...What makes one unit of measurement better than or different from another? Let&#039;s dive in.\" \/>\n<meta name=\"robots\" content=\"noindex, follow\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Rems, Ems, and Pixels. What&#039;s the Difference?\" \/>\n<meta property=\"og:description\" content=\"Rems, ems, and pixels...What makes one unit of measurement better than or different from another? Let&#039;s dive in.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wpengine.com\/case-studies\/resources\/rems-ems-and-pixels-whats-the-difference\/\" \/>\n<meta property=\"og:site_name\" content=\"WP Engine\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/wpengine\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-18T22:14:41+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2015\/12\/Pixels_1200x627.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"627\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2015\/12\/Pixels_1200x627.png\" \/>\n<meta name=\"twitter:site\" content=\"@wpengine\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/wpengine.com\/case-studies\/resources\/rems-ems-and-pixels-whats-the-difference\/\",\"url\":\"https:\/\/wpengine.com\/case-studies\/resources\/rems-ems-and-pixels-whats-the-difference\/\",\"name\":\"Rems, Ems, and Pixels. What's the Difference?\",\"isPartOf\":{\"@id\":\"https:\/\/wpengine.com\/case-studies\/#website\"},\"datePublished\":\"2015-12-30T17:00:09+00:00\",\"dateModified\":\"2024-01-18T22:14:41+00:00\",\"description\":\"Rems, ems, and pixels...What makes one unit of measurement better than or different from another? Let's dive in.\",\"breadcrumb\":{\"@id\":\"https:\/\/wpengine.com\/case-studies\/resources\/rems-ems-and-pixels-whats-the-difference\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/wpengine.com\/case-studies\/resources\/rems-ems-and-pixels-whats-the-difference\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/wpengine.com\/case-studies\/resources\/rems-ems-and-pixels-whats-the-difference\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/wpengine.com\/case-studies\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Resources\",\"item\":\"https:\/\/wpengine.com\/case-studies\/resources\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Rems, Ems, and Pixels. What&#8217;s the Difference?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/wpengine.com\/case-studies\/#website\",\"url\":\"https:\/\/wpengine.com\/case-studies\/\",\"name\":\"WP Engine\",\"description\":\"Managed Hosting for WordPress\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/wpengine.com\/case-studies\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/wpengine.com\/case-studies\/#\/schema\/person\/f5301455463371a10d1fc290e9ad0085\",\"name\":\"WP Engine\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/wpengine.com\/case-studies\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/d8770fe9625ca7c4601f13d9d0ab86565a6dac8cd6a77bfe2ada6d83c6837870?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/d8770fe9625ca7c4601f13d9d0ab86565a6dac8cd6a77bfe2ada6d83c6837870?s=96&d=mm&r=g\",\"caption\":\"WP Engine\"},\"sameAs\":[\"https:\/\/wpengine.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Rems, Ems, and Pixels. What's the Difference?","description":"Rems, ems, and pixels...What makes one unit of measurement better than or different from another? Let's dive in.","robots":{"index":"noindex","follow":"follow"},"og_locale":"en_US","og_type":"article","og_title":"Rems, Ems, and Pixels. What's the Difference?","og_description":"Rems, ems, and pixels...What makes one unit of measurement better than or different from another? Let's dive in.","og_url":"https:\/\/wpengine.com\/case-studies\/resources\/rems-ems-and-pixels-whats-the-difference\/","og_site_name":"WP Engine","article_publisher":"https:\/\/www.facebook.com\/wpengine","article_modified_time":"2024-01-18T22:14:41+00:00","og_image":[{"width":1200,"height":627,"url":"https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2015\/12\/Pixels_1200x627.png","type":"image\/png"}],"twitter_card":"summary_large_image","twitter_image":"https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2015\/12\/Pixels_1200x627.png","twitter_site":"@wpengine","twitter_misc":{"Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/wpengine.com\/case-studies\/resources\/rems-ems-and-pixels-whats-the-difference\/","url":"https:\/\/wpengine.com\/case-studies\/resources\/rems-ems-and-pixels-whats-the-difference\/","name":"Rems, Ems, and Pixels. What's the Difference?","isPartOf":{"@id":"https:\/\/wpengine.com\/case-studies\/#website"},"datePublished":"2015-12-30T17:00:09+00:00","dateModified":"2024-01-18T22:14:41+00:00","description":"Rems, ems, and pixels...What makes one unit of measurement better than or different from another? Let's dive in.","breadcrumb":{"@id":"https:\/\/wpengine.com\/case-studies\/resources\/rems-ems-and-pixels-whats-the-difference\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wpengine.com\/case-studies\/resources\/rems-ems-and-pixels-whats-the-difference\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/wpengine.com\/case-studies\/resources\/rems-ems-and-pixels-whats-the-difference\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/wpengine.com\/case-studies\/"},{"@type":"ListItem","position":2,"name":"Resources","item":"https:\/\/wpengine.com\/case-studies\/resources\/"},{"@type":"ListItem","position":3,"name":"Rems, Ems, and Pixels. What&#8217;s the Difference?"}]},{"@type":"WebSite","@id":"https:\/\/wpengine.com\/case-studies\/#website","url":"https:\/\/wpengine.com\/case-studies\/","name":"WP Engine","description":"Managed Hosting for WordPress","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/wpengine.com\/case-studies\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/wpengine.com\/case-studies\/#\/schema\/person\/f5301455463371a10d1fc290e9ad0085","name":"WP Engine","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wpengine.com\/case-studies\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/d8770fe9625ca7c4601f13d9d0ab86565a6dac8cd6a77bfe2ada6d83c6837870?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d8770fe9625ca7c4601f13d9d0ab86565a6dac8cd6a77bfe2ada6d83c6837870?s=96&d=mm&r=g","caption":"WP Engine"},"sameAs":["https:\/\/wpengine.com"]}]}},"acf":[],"grid_image_url":"https:\/\/wpengine.com\/case-studies\/wp-content\/uploads\/2015\/12\/Pixel_343x245.png","media-type":{"term_id":916,"name":"Article","slug":"article"},"role":"<strong>Roles:<\/strong> Designer","topic":"<strong>Topics:<\/strong> Design","_links":{"self":[{"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource\/139666","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource"}],"about":[{"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/types\/resource"}],"author":[{"embeddable":true,"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/users\/1"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/media\/140903"}],"wp:attachment":[{"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/media?parent=139666"}],"wp:term":[{"taxonomy":"resource-topic","embeddable":true,"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource-topic?post=139666"},{"taxonomy":"resource-role","embeddable":true,"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource-role?post=139666"},{"taxonomy":"resource-type","embeddable":true,"href":"https:\/\/wpengine.com\/case-studies\/wp-json\/wp\/v2\/resource-type?post=139666"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}