{"id":23569,"date":"2015-07-24T10:25:39","date_gmt":"2015-07-24T04:55:39","guid":{"rendered":"https:\/\/2thenew.today\/blog\/?p=23569"},"modified":"2015-07-24T13:48:46","modified_gmt":"2015-07-24T08:18:46","slug":"different-ways-for-aligning-an-element-vertically-center-in-html-using-css","status":"publish","type":"post","link":"https:\/\/2thenew.today\/blog\/different-ways-for-aligning-an-element-vertically-center-in-html-using-css\/","title":{"rendered":"Different Ways for aligning an element Vertically-Center in HTML using CSS"},"content":{"rendered":"<p>Aligning an element the way we want is never an easy task, especially when a non-UI developer is doing it and this problem worsens when we try to align that element Vertically-Center. Although doing it using patches is not difficult, but doing it the right way is a challenge.<\/p>\n<p>Here you\u2019ll find some cool CSS techniques by which you can easily Vertically-Center align any element.<\/p>\n<p>Below find the html snippet:<\/p>\n<p>[java]<br \/>\n&lt;div class=&quot;parent&quot;&gt;<\/p>\n<p>    &lt;div class=&quot;child&quot;&gt;Content&lt;\/div&gt;<\/p>\n<p>&lt;\/div&gt;<br \/>\n[\/java]<\/p>\n<p>Given below are the CSS protocols, which can be applied to align the child element in the center of the parent element.<\/p>\n<p><strong>Table Method<\/strong><\/p>\n<p>[java]<br \/>\n.parent {<\/p>\n<p>\tdisplay:table;<\/p>\n<p>}<\/p>\n<p>.child {<\/p>\n<p>\tdisplay:table-cell;<br \/>\n\tvertical-align:middle;<\/p>\n<p>}<br \/>\n[\/java]<\/p>\n<p><strong>Flexbox Layout Method<\/strong><\/p>\n<p>[java]<br \/>\n.parent {<\/p>\n<p>\tdisplay: -webkit-flexbox;<br \/>\n \tdisplay: -ms-flexbox;<br \/>\n\tdisplay: -webkit-flex;<br \/>\n\tdisplay: flex;<br \/>\n\t-webkit-flex-align: center;<br \/>\n  \t-ms-flex-align: center;<br \/>\n  \t-webkit-align-items: center;<br \/>\n \talign-items: center;<br \/>\n  \ttext-align: center; <\/p>\n<p>}<br \/>\n[\/java]<\/p>\n<p><strong>Translate() Method<\/strong><\/p>\n<p>[java]<br \/>\n.parent {<\/p>\n<p>\tposition: relative;<\/p>\n<p>}<\/p>\n<p>.child {<\/p>\n<p>   position: absolute;<br \/>\n   left: 50%;<br \/>\n   top: 50%;<br \/>\n   margin-left: -25%;<br \/>\n   margin-top: -25%;<br \/>\n   transform: translate(-50%, -50%);<br \/>\n   width: 40%;<br \/>\n   height: 50%;<\/p>\n<p>}<br \/>\n[\/java]<\/p>\n<p><strong>Absolute Positioning and Stretching Method<\/strong><\/p>\n<p>[java]<br \/>\n.parent {<\/p>\n<p>\tposition: relative;<\/p>\n<p>}<\/p>\n<p>.child {<\/p>\n<p>   \tposition: absolute;<br \/>\n    top: 0;<br \/>\n    bottom: 0;<br \/>\n    left: 0;<br \/>\n    right: 0;<br \/>\n    width: 50%;<br \/>\n    height: 30%;<br \/>\n    margin: auto;<\/p>\n<p>}<br \/>\n[\/java]<\/p>\n<p>I have tried my best to keep it as simple as possible, and it should solve your purpose that too conventionally.<\/p>\n<p>Cheers!!!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Aligning an element the way we want is never an easy task, especially when a non-UI developer is doing it and this problem worsens when we try to align that element Vertically-Center. Although doing it using patches is not difficult, but doing it the right way is a challenge. Here you\u2019ll find some cool CSS [&hellip;]<\/p>\n","protected":false},"author":130,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":3,"footnotes":""},"categories":[1],"tags":[355,4842],"class_list":["post-23569","post","type-post","status-publish","format-standard","hentry","category-technology","tag-css3","tag-html"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Aligning an element the way we want is never an easy task, especially when a non-UI developer is doing it and this problem worsens when we try to align that element Vertically-Center. Although doing it using patches is not difficult, but doing it the right way is a challenge. Here you\u2019ll find some cool CSS\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Kavita Upadhyay\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.today\/blog\/different-ways-for-aligning-an-element-vertically-center-in-html-using-css\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"Different Ways for aligning an element Vertically-Center in HTML using CSS | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Aligning an element the way we want is never an easy task, especially when a non-UI developer is doing it and this problem worsens when we try to align that element Vertically-Center. Although doing it using patches is not difficult, but doing it the right way is a challenge. Here you\u2019ll find some cool CSS\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.today\/blog\/different-ways-for-aligning-an-element-vertically-center-in-html-using-css\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Different Ways for aligning an element Vertically-Center in HTML using CSS | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Aligning an element the way we want is never an easy task, especially when a non-UI developer is doing it and this problem worsens when we try to align that element Vertically-Center. Although doing it using patches is not difficult, but doing it the right way is a challenge. Here you\u2019ll find some cool CSS\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/different-ways-for-aligning-an-element-vertically-center-in-html-using-css\\\/#article\",\"name\":\"Different Ways for aligning an element Vertically-Center in HTML using CSS | TO THE NEW Blog\",\"headline\":\"Different Ways for aligning an element Vertically-Center in HTML using CSS\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/kavita\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2015-07-24T10:25:39+05:30\",\"dateModified\":\"2015-07-24T13:48:46+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/different-ways-for-aligning-an-element-vertically-center-in-html-using-css\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/different-ways-for-aligning-an-element-vertically-center-in-html-using-css\\\/#webpage\"},\"articleSection\":\"Technology, CSS3, HTML\\\/UI\\\/CSS\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/different-ways-for-aligning-an-element-vertically-center-in-html-using-css\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/different-ways-for-aligning-an-element-vertically-center-in-html-using-css\\\/#listItem\",\"name\":\"Different Ways for aligning an element Vertically-Center in HTML using CSS\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/different-ways-for-aligning-an-element-vertically-center-in-html-using-css\\\/#listItem\",\"position\":3,\"name\":\"Different Ways for aligning an element Vertically-Center in HTML using CSS\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/kavita\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/kavita\\\/\",\"name\":\"Kavita Upadhyay\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/different-ways-for-aligning-an-element-vertically-center-in-html-using-css\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/8ea12891a9d65361239cc014644d13f0514d1f7cc209c6cffb7d5e82751bb202?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Kavita Upadhyay\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/different-ways-for-aligning-an-element-vertically-center-in-html-using-css\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/different-ways-for-aligning-an-element-vertically-center-in-html-using-css\\\/\",\"name\":\"Different Ways for aligning an element Vertically-Center in HTML using CSS | TO THE NEW Blog\",\"description\":\"Aligning an element the way we want is never an easy task, especially when a non-UI developer is doing it and this problem worsens when we try to align that element Vertically-Center. Although doing it using patches is not difficult, but doing it the right way is a challenge. Here you\\u2019ll find some cool CSS\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/different-ways-for-aligning-an-element-vertically-center-in-html-using-css\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/kavita\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/kavita\\\/#author\"},\"datePublished\":\"2015-07-24T10:25:39+05:30\",\"dateModified\":\"2015-07-24T13:48:46+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Different Ways for aligning an element Vertically-Center in HTML using CSS | TO THE NEW Blog","description":"Aligning an element the way we want is never an easy task, especially when a non-UI developer is doing it and this problem worsens when we try to align that element Vertically-Center. Although doing it using patches is not difficult, but doing it the right way is a challenge. Here you\u2019ll find some cool CSS","canonical_url":"https:\/\/2thenew.today\/blog\/different-ways-for-aligning-an-element-vertically-center-in-html-using-css\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.today\/blog\/different-ways-for-aligning-an-element-vertically-center-in-html-using-css\/#article","name":"Different Ways for aligning an element Vertically-Center in HTML using CSS | TO THE NEW Blog","headline":"Different Ways for aligning an element Vertically-Center in HTML using CSS","author":{"@id":"https:\/\/2thenew.today\/blog\/author\/kavita\/#author"},"publisher":{"@id":"https:\/\/2thenew.today\/blog\/#organization"},"datePublished":"2015-07-24T10:25:39+05:30","dateModified":"2015-07-24T13:48:46+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/2thenew.today\/blog\/different-ways-for-aligning-an-element-vertically-center-in-html-using-css\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.today\/blog\/different-ways-for-aligning-an-element-vertically-center-in-html-using-css\/#webpage"},"articleSection":"Technology, CSS3, HTML\/UI\/CSS"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.today\/blog\/different-ways-for-aligning-an-element-vertically-center-in-html-using-css\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.today\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/2thenew.today\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/different-ways-for-aligning-an-element-vertically-center-in-html-using-css\/#listItem","name":"Different Ways for aligning an element Vertically-Center in HTML using CSS"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/different-ways-for-aligning-an-element-vertically-center-in-html-using-css\/#listItem","position":3,"name":"Different Ways for aligning an element Vertically-Center in HTML using CSS","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.today\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.today\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.today\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.today\/blog\/author\/kavita\/#author","url":"https:\/\/2thenew.today\/blog\/author\/kavita\/","name":"Kavita Upadhyay","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.today\/blog\/different-ways-for-aligning-an-element-vertically-center-in-html-using-css\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/8ea12891a9d65361239cc014644d13f0514d1f7cc209c6cffb7d5e82751bb202?s=96&d=mm&r=g","width":96,"height":96,"caption":"Kavita Upadhyay"}},{"@type":"WebPage","@id":"https:\/\/2thenew.today\/blog\/different-ways-for-aligning-an-element-vertically-center-in-html-using-css\/#webpage","url":"https:\/\/2thenew.today\/blog\/different-ways-for-aligning-an-element-vertically-center-in-html-using-css\/","name":"Different Ways for aligning an element Vertically-Center in HTML using CSS | TO THE NEW Blog","description":"Aligning an element the way we want is never an easy task, especially when a non-UI developer is doing it and this problem worsens when we try to align that element Vertically-Center. Although doing it using patches is not difficult, but doing it the right way is a challenge. Here you\u2019ll find some cool CSS","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.today\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.today\/blog\/different-ways-for-aligning-an-element-vertically-center-in-html-using-css\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.today\/blog\/author\/kavita\/#author"},"creator":{"@id":"https:\/\/2thenew.today\/blog\/author\/kavita\/#author"},"datePublished":"2015-07-24T10:25:39+05:30","dateModified":"2015-07-24T13:48:46+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.today\/blog\/#website","url":"https:\/\/2thenew.today\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.today\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"Different Ways for aligning an element Vertically-Center in HTML using CSS | TO THE NEW Blog","og:description":"Aligning an element the way we want is never an easy task, especially when a non-UI developer is doing it and this problem worsens when we try to align that element Vertically-Center. Although doing it using patches is not difficult, but doing it the right way is a challenge. Here you\u2019ll find some cool CSS","og:url":"https:\/\/2thenew.today\/blog\/different-ways-for-aligning-an-element-vertically-center-in-html-using-css\/","og:image":"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Different Ways for aligning an element Vertically-Center in HTML using CSS | TO THE NEW Blog","twitter:description":"Aligning an element the way we want is never an easy task, especially when a non-UI developer is doing it and this problem worsens when we try to align that element Vertically-Center. Although doing it using patches is not difficult, but doing it the right way is a challenge. Here you\u2019ll find some cool CSS","twitter:image":"https:\/\/2thenew.today\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"23569","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"blog","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-30 07:12:22","updated":"2024-02-29 10:22:23","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.today\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/2thenew.today\/blog\/category\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tDifferent Ways for aligning an element Vertically-Center in HTML using CSS\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.today\/blog"},{"label":"Technology","link":"https:\/\/2thenew.today\/blog\/category\/technology\/"},{"label":"Different Ways for aligning an element Vertically-Center in HTML using CSS","link":"https:\/\/2thenew.today\/blog\/different-ways-for-aligning-an-element-vertically-center-in-html-using-css\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/posts\/23569","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/users\/130"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/comments?post=23569"}],"version-history":[{"count":0,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/posts\/23569\/revisions"}],"wp:attachment":[{"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/media?parent=23569"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/categories?post=23569"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.today\/blog\/wp-json\/wp\/v2\/tags?post=23569"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}