{"id":29148,"date":"2015-10-29T12:13:45","date_gmt":"2015-10-29T06:43:45","guid":{"rendered":"https:\/\/2thenew.online\/blog\/?p=29148"},"modified":"2015-11-03T14:55:32","modified_gmt":"2015-11-03T09:25:32","slug":"responsive-tables-using-css","status":"publish","type":"post","link":"https:\/\/2thenew.online\/blog\/responsive-tables-using-css\/","title":{"rendered":"Responsive Tables using CSS"},"content":{"rendered":"<p>In this blog, I will show you how to build responsive table layout with using CSS only. The best practice says not to use table while creating HTML markup but sometime we came across such situations to use table to show tabular data.<\/p>\n<p>In the tabular data, sometime it\u2019s not easy to manage in different resolution. In the table we have to use rows and columns to show our data which sometimes occurs problem in different resolution. The main challenge while working with table responsive layout is to give better UX to user in small screen. I have seen a lot of approaches to create responsive tabular data with the use of Javascript, Jquery and more but found it can be done by use of CSS only.<\/p>\n<p>So, here is the way to create responsive table layout with using CSS only with an easy way, better response and minimum CSS code.<\/p>\n<p><strong>How to make responsive table:<\/strong><\/p>\n<p><b><\/b>Use data-* attribute (data-title) to hold information about the respective column(s) in header (thead). Pseudo elements in HTML, specifically :before or :after, match the virtual elements.<\/p>\n<p>[html]&lt;td data-title=&quot;User ID&quot;&gt;0001&lt;\/td&gt;[\/html]<\/p>\n<p>When the screen is below a certain media screen, there are need to create responsive tabular data, set the table elements to display: block and hide the thead column where assistive td won\u2019t need to see it, and use generated :after or :before content to respective data-* attributes.<\/p>\n<p>[html]<\/p>\n<p>.table-responsive td:before {<\/p>\n<p>content: attr(data-title);<\/p>\n<p>}<\/p>\n<p>[\/html]<\/p>\n<p>&nbsp;<\/p>\n<p><strong>So the following basic Table structure is:<\/strong><\/p>\n<p>[html]<\/p>\n<p>&lt;div class=&quot;table-responsive&quot;&gt;<\/p>\n<p>&lt;table&gt;<\/p>\n<p>&lt;thead&gt;<\/p>\n<p>&lt;tr&gt;<\/p>\n<p>&lt;th&gt;User ID&lt;\/th&gt;<\/p>\n<p>&lt;th&gt;First Name&lt;\/th&gt;<\/p>\n<p>&lt;th&gt;Last Name&lt;\/th&gt;<\/p>\n<p>&lt;th&gt;Username&lt;\/th&gt;<\/p>\n<p>&lt;\/tr&gt;<\/p>\n<p>&lt;\/thead&gt;<\/p>\n<p>&lt;tbody&gt;<\/p>\n<p>&lt;tr&gt;<\/p>\n<p>&lt;td data-title=&quot;User ID&quot;&gt;0001&lt;\/td&gt;<\/p>\n<p>&lt;td data-title=&quot;First Name&quot;&gt;Maria&lt;\/td&gt;<\/p>\n<p>&lt;td data-title=&quot;Last Name&quot;&gt;Anders&lt;\/td&gt;<\/p>\n<p>&lt;td data-title=&quot;Username&quot;&gt;@maria&lt;\/td&gt;<\/p>\n<p>&lt;\/tr&gt;<\/p>\n<p>&lt;\/tbody&gt;<\/p>\n<p>&lt;\/table&gt;<\/p>\n<p>&lt;\/div&gt;<\/p>\n<p>[\/html]<\/p>\n<p>&nbsp;<\/p>\n<p><strong>And following CSS styles media query is:<\/strong><\/p>\n<p>[html]<\/p>\n<p>table {<\/p>\n<p>width: 100%;<\/p>\n<p>text-align: left;<\/p>\n<p>}<\/p>\n<p>@media only screen and (max-width: 768px) {<\/p>\n<p>.table-responsive table,<\/p>\n<p>.table-responsive thead,<\/p>\n<p>.table-responsive tbody,<\/p>\n<p>.table-responsive tfoot,<\/p>\n<p>.table-responsive tr,<\/p>\n<p>.table-responsive th,<\/p>\n<p>.table-responsive td {<\/p>\n<p>display: block;<\/p>\n<p>}<\/p>\n<p>.table-responsive thead tr {<\/p>\n<p>position: absolute;<\/p>\n<p>top: -9999px;<\/p>\n<p>left: -9999px;<\/p>\n<p>}<\/p>\n<p>.table-responsive tfoot tr &gt; th {<\/p>\n<p>position: absolute;<\/p>\n<p>top: -9999px;<\/p>\n<p>left: -9999px;<\/p>\n<p>}<\/p>\n<p>.table-responsive tr {<\/p>\n<p>border: 1px solid #ccc;<\/p>\n<p>}<\/p>\n<p>.table-responsive td {<\/p>\n<p>border: none;<\/p>\n<p>border-bottom: 1px solid #eee;<\/p>\n<p>position: relative;<\/p>\n<p>white-space: normal;<\/p>\n<p>text-align: left;<\/p>\n<p>padding: 5px 10px 5px calc(50% + 10px);<\/p>\n<p>}<\/p>\n<p>.table-responsive td:before {<\/p>\n<p>content: attr(data-title);<\/p>\n<p>position: absolute;<\/p>\n<p>top: 1px;<\/p>\n<p>left: 1px;<\/p>\n<p>width: calc(50% &#8211; 20px);<\/p>\n<p>padding: 5px 10px;<\/p>\n<p>white-space: nowrap;<\/p>\n<p>text-align: left;<\/p>\n<p>font-weight: bold;<\/p>\n<p>}<\/p>\n<p>}<\/p>\n<p>[\/html]<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-29167\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/10\/table-without-responsive.jpg\" alt=\"table-without-responsive\" width=\"769\" height=\"72\" \/><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-29168\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/10\/table-with-responsive.jpg\" alt=\"table-with-responsive\" width=\"300\" height=\"83\" \/><\/p>\n<p><b>For more:<\/b><\/p>\n<p>github reference : https:\/\/github.com\/devendra-gh\/responsive-table-using-css<\/p>\n<p>JSfiddle reference : https:\/\/jsfiddle.net\/komqa202\/<\/p>\n<p>Hope this will help!!<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this blog, I will show you how to build responsive table layout with using CSS only. The best practice says not to use table while creating HTML markup but sometime we came across such situations to use table to show tabular data. In the tabular data, sometime it\u2019s not easy to manage in different [&hellip;]<\/p>\n","protected":false},"author":370,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":19,"footnotes":""},"categories":[1],"tags":[2673,2674,2676,2671,2672,2675],"class_list":["post-29148","post","type-post","status-publish","format-standard","hentry","category-technology","tag-html-css-table","tag-no-js-tablular-data-responsive","tag-single-html-responsive-table","tag-table-responsive","tag-table-responsive-with-css","tag-tabular-data-responsive-view"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"In this blog, I will show you how to build responsive table layout with using CSS only. The best practice says not to use table while creating HTML markup but sometime we came across such situations to use table to show tabular data. In the tabular data, sometime it\u2019s not easy to manage in different\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Devendra Madheshiya\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/2thenew.online\/blog\/responsive-tables-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=\"Responsive Tables using CSS | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"In this blog, I will show you how to build responsive table layout with using CSS only. The best practice says not to use table while creating HTML markup but sometime we came across such situations to use table to show tabular data. In the tabular data, sometime it\u2019s not easy to manage in different\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/2thenew.online\/blog\/responsive-tables-using-css\/\" \/>\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=\"Responsive Tables using CSS | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"In this blog, I will show you how to build responsive table layout with using CSS only. The best practice says not to use table while creating HTML markup but sometime we came across such situations to use table to show tabular data. In the tabular data, sometime it\u2019s not easy to manage in different\" \/>\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\\\/responsive-tables-using-css\\\/#article\",\"name\":\"Responsive Tables using CSS | TO THE NEW Blog\",\"headline\":\"Responsive Tables using CSS\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/devendra\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"\\\/blog\\\/wp-ttn-blog\\\/uploads\\\/2015\\\/10\\\/table-without-responsive.jpg\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/responsive-tables-using-css\\\/#articleImage\"},\"datePublished\":\"2015-10-29T12:13:45+05:30\",\"dateModified\":\"2015-11-03T14:55:32+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/responsive-tables-using-css\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/responsive-tables-using-css\\\/#webpage\"},\"articleSection\":\"Technology, HTML CSS TABLE, no js tablular data responsive, single HTML responsive table, Table responsive, Table responsive with css, tabular data responsive view\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/responsive-tables-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\\\/responsive-tables-using-css\\\/#listItem\",\"name\":\"Responsive Tables using CSS\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/responsive-tables-using-css\\\/#listItem\",\"position\":3,\"name\":\"Responsive Tables 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\\\/devendra\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/devendra\\\/\",\"name\":\"Devendra Madheshiya\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/responsive-tables-using-css\\\/#authorImage\",\"url\":\"https:\\\/\\\/newersworld-sf-static.tothenew.net\\\/prod\\\/profilePicFolder\\\/893e6b35-29aa-4da8-9452-4c8c6697efcc_devendra-IG0289.jpg\",\"width\":96,\"height\":96,\"caption\":\"Devendra Madheshiya\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/responsive-tables-using-css\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/responsive-tables-using-css\\\/\",\"name\":\"Responsive Tables using CSS | TO THE NEW Blog\",\"description\":\"In this blog, I will show you how to build responsive table layout with using CSS only. The best practice says not to use table while creating HTML markup but sometime we came across such situations to use table to show tabular data. In the tabular data, sometime it\\u2019s not easy to manage in different\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/responsive-tables-using-css\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/devendra\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/devendra\\\/#author\"},\"datePublished\":\"2015-10-29T12:13:45+05:30\",\"dateModified\":\"2015-11-03T14:55:32+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":"Responsive Tables using CSS | TO THE NEW Blog","description":"In this blog, I will show you how to build responsive table layout with using CSS only. The best practice says not to use table while creating HTML markup but sometime we came across such situations to use table to show tabular data. In the tabular data, sometime it\u2019s not easy to manage in different","canonical_url":"https:\/\/2thenew.online\/blog\/responsive-tables-using-css\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/2thenew.online\/blog\/responsive-tables-using-css\/#article","name":"Responsive Tables using CSS | TO THE NEW Blog","headline":"Responsive Tables using CSS","author":{"@id":"https:\/\/2thenew.online\/blog\/author\/devendra\/#author"},"publisher":{"@id":"https:\/\/2thenew.online\/blog\/#organization"},"image":{"@type":"ImageObject","url":"\/blog\/wp-ttn-blog\/uploads\/2015\/10\/table-without-responsive.jpg","@id":"https:\/\/2thenew.online\/blog\/responsive-tables-using-css\/#articleImage"},"datePublished":"2015-10-29T12:13:45+05:30","dateModified":"2015-11-03T14:55:32+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/2thenew.online\/blog\/responsive-tables-using-css\/#webpage"},"isPartOf":{"@id":"https:\/\/2thenew.online\/blog\/responsive-tables-using-css\/#webpage"},"articleSection":"Technology, HTML CSS TABLE, no js tablular data responsive, single HTML responsive table, Table responsive, Table responsive with css, tabular data responsive view"},{"@type":"BreadcrumbList","@id":"https:\/\/2thenew.online\/blog\/responsive-tables-using-css\/#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\/responsive-tables-using-css\/#listItem","name":"Responsive Tables using CSS"},"previousItem":{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/2thenew.online\/blog\/responsive-tables-using-css\/#listItem","position":3,"name":"Responsive Tables using CSS","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\/devendra\/#author","url":"https:\/\/2thenew.online\/blog\/author\/devendra\/","name":"Devendra Madheshiya","image":{"@type":"ImageObject","@id":"https:\/\/2thenew.online\/blog\/responsive-tables-using-css\/#authorImage","url":"https:\/\/newersworld-sf-static.tothenew.net\/prod\/profilePicFolder\/893e6b35-29aa-4da8-9452-4c8c6697efcc_devendra-IG0289.jpg","width":96,"height":96,"caption":"Devendra Madheshiya"}},{"@type":"WebPage","@id":"https:\/\/2thenew.online\/blog\/responsive-tables-using-css\/#webpage","url":"https:\/\/2thenew.online\/blog\/responsive-tables-using-css\/","name":"Responsive Tables using CSS | TO THE NEW Blog","description":"In this blog, I will show you how to build responsive table layout with using CSS only. The best practice says not to use table while creating HTML markup but sometime we came across such situations to use table to show tabular data. In the tabular data, sometime it\u2019s not easy to manage in different","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/2thenew.online\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/2thenew.online\/blog\/responsive-tables-using-css\/#breadcrumblist"},"author":{"@id":"https:\/\/2thenew.online\/blog\/author\/devendra\/#author"},"creator":{"@id":"https:\/\/2thenew.online\/blog\/author\/devendra\/#author"},"datePublished":"2015-10-29T12:13:45+05:30","dateModified":"2015-11-03T14:55:32+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":"Responsive Tables using CSS | TO THE NEW Blog","og:description":"In this blog, I will show you how to build responsive table layout with using CSS only. The best practice says not to use table while creating HTML markup but sometime we came across such situations to use table to show tabular data. In the tabular data, sometime it\u2019s not easy to manage in different","og:url":"https:\/\/2thenew.online\/blog\/responsive-tables-using-css\/","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":"Responsive Tables using CSS | TO THE NEW Blog","twitter:description":"In this blog, I will show you how to build responsive table layout with using CSS only. The best practice says not to use table while creating HTML markup but sometime we came across such situations to use table to show tabular data. In the tabular data, sometime it\u2019s not easy to manage in different","twitter:image":"https:\/\/2thenew.online\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"29148","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-29 16:12:00","updated":"2024-02-29 09:27:24","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\tResponsive Tables using CSS\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":"Responsive Tables using CSS","link":"https:\/\/2thenew.online\/blog\/responsive-tables-using-css\/"}],"_links":{"self":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts\/29148","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\/370"}],"replies":[{"embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/comments?post=29148"}],"version-history":[{"count":0,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/posts\/29148\/revisions"}],"wp:attachment":[{"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/media?parent=29148"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/categories?post=29148"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/2thenew.online\/blog\/wp-json\/wp\/v2\/tags?post=29148"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}