{"id":23853,"date":"2015-07-27T01:32:34","date_gmt":"2015-07-26T20:02:34","guid":{"rendered":"https:\/\/2thenew.online\/blog\/?p=23853"},"modified":"2015-07-27T01:32:34","modified_gmt":"2015-07-26T20:02:34","slug":"deep-dive-into-css-pseudo-elements","status":"publish","type":"post","link":"https:\/\/2thenew.online\/blog\/deep-dive-into-css-pseudo-elements\/","title":{"rendered":"Deep dive into CSS Pseudo Elements."},"content":{"rendered":"<p>We all are familiar with the <strong>Pseudo classes<\/strong> that css provides us to target certain elements that matches up certain criteria or state. And they are signified by a single colon followed by the pseudo class.<\/p>\n<p><u>Syntax for pseudo class:<\/u><\/p>\n<p>[code]selector:pseudo-class {<br \/>\n    property:value;<br \/>\n}[\/code]<\/p>\n<p>Some of the basic examples of pseudo class, commonly used are:<br \/>\n:hover<br \/>\n:active<br \/>\n:visited<br \/>\n:first-child<\/p>\n<p>Whereas, a <strong>Pseudo element<\/strong> is designed to target a certain part of an element. Which makes it different from the pseudo classes and it is signified by two colons followed by the name of the pseudo class. Since IE8 doesn&#8217;t works well with the two colon format, but you can also use the pseudo elements with the single colon format. This makes it support IE8, as all other latest browser also supports the single colon format.<\/p>\n<p><u>Syntax for pseudo element:<\/u><\/p>\n<p>[code]selector::pseudo-element {<br \/>\n    property:value;<br \/>\n}[\/code]<\/p>\n<p>Some of the basic examples of pseudo elements, commonly used are:<br \/>\n::before<br \/>\n::after<br \/>\n::first-letter<br \/>\n::first-line<br \/>\n::selection<\/p>\n<p>These pseudo elements allows us to style and add content to an existing element. You can use these pseudo elements as,<\/p>\n<p><strong>::before<\/strong><br \/>\nIt is used to inserts content before the content of the selected element\/elements. To add up content before the selected element, you need to use the content property of CSS.<\/p>\n<p><u>example<\/u><\/p>\n<p>[code]my-class::before {<br \/>\n\tcontent : &quot;*****&quot;;<br \/>\n\tcolor : red;<br \/>\n}[\/code]<\/p>\n<p>This will insert five red star(asterisk) before the element &#8220;my-class&#8221;.<\/p>\n<p><strong>::after<\/strong><br \/>\nIt is used to inserts content after the content of the selected element\/elements. To add up content after the selected element, you need to use the content property of CSS.<\/p>\n<p><u>example<\/u><\/p>\n<p>[code]my-class::after {<br \/>\n\tcontent : &quot;*****&quot;;<br \/>\n\tcolor : red;<br \/>\n}[\/code]<\/p>\n<p>This will insert five red star(asterisk) after the element &#8220;my-class&#8221;.<\/p>\n<p><strong>::first-letter<\/strong><br \/>\nIt is used to select the first letter of the specified selector. This will help you to give style specifically for your first letter of the text i.e. initial or dropcap.<\/p>\n<p><u>example<\/u><\/p>\n<p>[code]my-class::first-letter {<br \/>\n    font-size: 80px;<br \/>\n    font-weight: bold;<br \/>\n}[\/code]<\/p>\n<p><strong>::first-line<\/strong><br \/>\nIt is used to select the first line of the specified selector. This will help you to give style to the first line of the text.<\/p>\n<p><u>example<\/u><\/p>\n<p>[code]my-class::first-line {<br \/>\n    font-weight: bold;<br \/>\n    color: green;<br \/>\n}[\/code]<\/p>\n<p><strong>::selector<\/strong><br \/>\nIt is used to match the portion of an element that is been selected by a user on the screen.<\/p>\n<p><u>example<\/u><\/p>\n<p>[code]my-class::selection {<br \/>\n    color: red;<br \/>\n    background: white;<br \/>\n}<br \/>\n\/\/ selection  for Mozilla Firefox<br \/>\nmy-class::-moz-selection {<br \/>\n    color: red;<br \/>\n    background: white;<br \/>\n}[\/code]<\/p>\n<p>You can use these above described pseudo elements for creating custom icons, designs, layouts, etc. It gives you power to showcase your complex GUI designs in a more symmetrical manner and make the HTML code less complex and easier to maintain.<\/p>\n<p>Hope it would Help!!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>We all are familiar with the Pseudo classes that css provides us to target certain elements that matches up certain criteria or state. And they are signified by a single colon followed by the pseudo class. Syntax for pseudo class: [code]selector:pseudo-class { property:value; }[\/code] Some of the basic examples of pseudo class, commonly used are: [&hellip;]<\/p>\n","protected":false},"author":99,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":3,"footnotes":""},"categories":[1],"tags":[245,4842,378,2034,2033],"class_list":["post-23853","post","type-post","status-publish","format-standard","hentry","category-technology","tag-css","tag-html","tag-html5","tag-pseudo-classes","tag-pseudo-elements"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"We all are familiar with the Pseudo classes that css provides us to target certain elements that matches up certain criteria or state. And they are signified by a single colon followed by the pseudo class. Syntax for pseudo class: [code]selector:pseudo-class { property:value; }[\/code] Some of the basic examples of pseudo class, commonly used are:\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Vibhor Kukreja\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.online\/blog\/deep-dive-into-css-pseudo-elements\/\" \/>\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=\"Deep dive into CSS Pseudo Elements. | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"We all are familiar with the Pseudo classes that css provides us to target certain elements that matches up certain criteria or state. And they are signified by a single colon followed by the pseudo class. Syntax for pseudo class: [code]selector:pseudo-class { property:value; }[\/code] Some of the basic examples of pseudo class, commonly used are:\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.online\/blog\/deep-dive-into-css-pseudo-elements\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/2thenew.online\/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=\"Deep dive into CSS Pseudo Elements. | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"We all are familiar with the Pseudo classes that css provides us to target certain elements that matches up certain criteria or state. And they are signified by a single colon followed by the pseudo class. Syntax for pseudo class: [code]selector:pseudo-class { property:value; }[\/code] Some of the basic examples of pseudo class, commonly used are:\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/2thenew.online\/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\\\/deep-dive-into-css-pseudo-elements\\\/#article\",\"name\":\"Deep dive into CSS Pseudo Elements. | TO THE NEW Blog\",\"headline\":\"Deep dive into CSS Pseudo Elements.\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vibhor-kukreja\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2015-07-27T01:32:34+05:30\",\"dateModified\":\"2015-07-27T01:32:34+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/deep-dive-into-css-pseudo-elements\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/deep-dive-into-css-pseudo-elements\\\/#webpage\"},\"articleSection\":\"Technology, css, HTML\\\/UI\\\/CSS, HTML5, pseudo classes, pseudo elements\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/deep-dive-into-css-pseudo-elements\\\/#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\\\/deep-dive-into-css-pseudo-elements\\\/#listItem\",\"name\":\"Deep dive into CSS Pseudo Elements.\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/deep-dive-into-css-pseudo-elements\\\/#listItem\",\"position\":3,\"name\":\"Deep dive into CSS Pseudo Elements.\",\"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\\\/vibhor-kukreja\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vibhor-kukreja\\\/\",\"name\":\"Vibhor Kukreja\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/deep-dive-into-css-pseudo-elements\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b6f356c071a634e6360accc831ed76faed3f121165a8952666c71c81773cbc48?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"Vibhor Kukreja\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/deep-dive-into-css-pseudo-elements\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/deep-dive-into-css-pseudo-elements\\\/\",\"name\":\"Deep dive into CSS Pseudo Elements. | TO THE NEW Blog\",\"description\":\"We all are familiar with the Pseudo classes that css provides us to target certain elements that matches up certain criteria or state. And they are signified by a single colon followed by the pseudo class. Syntax for pseudo class: [code]selector:pseudo-class { property:value; }[\\\/code] Some of the basic examples of pseudo class, commonly used are:\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/deep-dive-into-css-pseudo-elements\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vibhor-kukreja\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/vibhor-kukreja\\\/#author\"},\"datePublished\":\"2015-07-27T01:32:34+05:30\",\"dateModified\":\"2015-07-27T01:32:34+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":"Deep dive into CSS Pseudo Elements. | TO THE NEW Blog","description":"We all are familiar with the Pseudo classes that css provides us to target certain elements that matches up certain criteria or state. And they are signified by a single colon followed by the pseudo class. Syntax for pseudo class: [code]selector:pseudo-class { property:value; }[\/code] Some of the basic examples of pseudo class, commonly used are:","canonical_url":"https:\/\/2thenew.online\/blog\/deep-dive-into-css-pseudo-elements\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.online\/blog\/deep-dive-into-css-pseudo-elements\/#article","name":"Deep dive into CSS Pseudo Elements. | TO THE NEW Blog","headline":"Deep dive into CSS Pseudo Elements.","author":{"@id":"https:\/\/2thenew.online\/blog\/author\/vibhor-kukreja\/#author"},"publisher":{"@id":"https:\/\/2thenew.online\/blog\/#organization"},"datePublished":"2015-07-27T01:32:34+05:30","dateModified":"2015-07-27T01:32:34+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/2thenew.online\/blog\/deep-dive-into-css-pseudo-elements\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.online\/blog\/deep-dive-into-css-pseudo-elements\/#webpage"},"articleSection":"Technology, css, HTML\/UI\/CSS, HTML5, pseudo classes, pseudo elements"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.online\/blog\/deep-dive-into-css-pseudo-elements\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog#listItem","position":1,"name":"Home","item":"https:\/\/2thenew.online\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/2thenew.online\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/deep-dive-into-css-pseudo-elements\/#listItem","name":"Deep dive into CSS Pseudo Elements."},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/deep-dive-into-css-pseudo-elements\/#listItem","position":3,"name":"Deep dive into CSS Pseudo Elements.","previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/2thenew.online\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/2thenew.online\/blog\/"},{"@type":"Person","@id":"https:\/\/2thenew.online\/blog\/author\/vibhor-kukreja\/#author","url":"https:\/\/2thenew.online\/blog\/author\/vibhor-kukreja\/","name":"Vibhor Kukreja","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.online\/blog\/deep-dive-into-css-pseudo-elements\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/b6f356c071a634e6360accc831ed76faed3f121165a8952666c71c81773cbc48?s=96&d=mm&r=g","width":96,"height":96,"caption":"Vibhor Kukreja"}},{"@type":"WebPage","@id":"https:\/\/2thenew.online\/blog\/deep-dive-into-css-pseudo-elements\/#webpage","url":"https:\/\/2thenew.online\/blog\/deep-dive-into-css-pseudo-elements\/","name":"Deep dive into CSS Pseudo Elements. | TO THE NEW Blog","description":"We all are familiar with the Pseudo classes that css provides us to target certain elements that matches up certain criteria or state. And they are signified by a single colon followed by the pseudo class. Syntax for pseudo class: [code]selector:pseudo-class { property:value; }[\/code] Some of the basic examples of pseudo class, commonly used are:","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.online\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.online\/blog\/deep-dive-into-css-pseudo-elements\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.online\/blog\/author\/vibhor-kukreja\/#author"},"creator":{"@id":"https:\/\/2thenew.online\/blog\/author\/vibhor-kukreja\/#author"},"datePublished":"2015-07-27T01:32:34+05:30","dateModified":"2015-07-27T01:32:34+05:30"},{"@type":"WebSite","@id":"https:\/\/2thenew.online\/blog\/#website","url":"https:\/\/2thenew.online\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/2thenew.online\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"Deep dive into CSS Pseudo Elements. | TO THE NEW Blog","og:description":"We all are familiar with the Pseudo classes that css provides us to target certain elements that matches up certain criteria or state. And they are signified by a single colon followed by the pseudo class. Syntax for pseudo class: [code]selector:pseudo-class { property:value; }[\/code] Some of the basic examples of pseudo class, commonly used are:","og:url":"https:\/\/2thenew.online\/blog\/deep-dive-into-css-pseudo-elements\/","og:image":"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Deep dive into CSS Pseudo Elements. | TO THE NEW Blog","twitter:description":"We all are familiar with the Pseudo classes that css provides us to target certain elements that matches up certain criteria or state. And they are signified by a single colon followed by the pseudo class. Syntax for pseudo class: [code]selector:pseudo-class { property:value; }[\/code] Some of the basic examples of pseudo class, commonly used are:","twitter:image":"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"23853","title":"Deep dive into CSS Pseudo Elements. | #site_title","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:21","updated":"2024-02-29 08:49:28","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.online\/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.online\/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\tDeep dive into CSS Pseudo Elements.\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/2thenew.online\/blog"},{"label":"Technology","link":"https:\/\/2thenew.online\/blog\/category\/technology\/"},{"label":"Deep dive into CSS Pseudo Elements.","link":"https:\/\/2thenew.online\/blog\/deep-dive-into-css-pseudo-elements\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts\/23853","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/users\/99"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/comments?post=23853"}],"version-history":[{"count":0,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts\/23853\/revisions"}],"wp:attachment":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/media?parent=23853"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/categories?post=23853"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/tags?post=23853"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}