{"id":78481,"date":"2023-02-17T13:29:33","date_gmt":"2023-02-17T13:29:33","guid":{"rendered":"\/tutorials\/?p=78481"},"modified":"2026-03-09T19:18:09","modified_gmt":"2026-03-09T19:18:09","slug":"css-breakpoints","status":"publish","type":"post","link":"\/ng\/tutorials\/css-breakpoints","title":{"rendered":"How to use CSS breakpoints for responsive design, most common media breakpoints + tips"},"content":{"rendered":"<?xml encoding=\"utf-8\" ?><p>CSS breakpoints are values that determine how a website looks on different screen sizes. When visitors&rsquo; devices reach their breakpoints, the website content responds and adjusts accordingly.&nbsp;<\/p><p>These breakpoints, together with CSS media queries, are responsible for a responsive website design. In short, they make your website look proportional when viewed on a different screen size.&nbsp;<\/p><p>In this article, we&rsquo;ll show you how to implement CSS breakpoints for your site. You will also get tips on how to use breakpoints for a responsive web design.&nbsp;<\/p><p>\n\n\n<div class=\"protip\">\n                    <h2 class=\"featured-snippet title\">What Is a CSS Breakpoint?<\/h2>\n                    <p><br>\nA CSS breakpoint is a value that determines a website&rsquo;s size and layout across different screen sizes. It creates a responsive website design when implemented with a CSS media query. <\/p>\n                <\/div>\n\n\n\n<\/p><p>A breakpoint&rsquo;s value is set based on the user&rsquo;s device height or width. While it is typically shown in pixels, breakpoints can also use CSS units like <strong>em<\/strong>,<strong> rem<\/strong>, or <strong>percentages<\/strong>.&nbsp;<\/p><p>With breakpoints and media queries, you can define different conditions and adjust your site content based on them. For instance, you can show the navigation bar only on large devices.<\/p><p>To apply breakpoints and media queries, you can only use an external <a href=\"\/ng\/tutorials\/difference-between-inline-external-and-internal-css\">CSS type<\/a>. To do so, you must create and <a href=\"\/ng\/tutorials\/website\/how-to-link-a-stylesheet-css-file-to-your-html-file\">link a stylesheet to your site&rsquo;s HTML file<\/a>.<\/p><h2 class=\"wp-block-heading\" id=\"h-how-to-set-css-breakpoints\">How to Set CSS Breakpoints<\/h2><p>There are two ways of setting CSS breakpoints &ndash; based on the device or site&rsquo;s content.&nbsp;<\/p><p><div class=\"protip\">\n                    <h4 class=\"title\">Suggested Reading<\/h4>\n                    <p> Before proceeding, check out our  <a href=\"\/ng\/tutorials\/css-cheat-sheet\">CSS cheat sheet<\/a> if you are unfamiliar with the styling language.<\/p>\n                <\/div>\n\n\n\n<\/p><h3 class=\"wp-block-heading\" id=\"h-how-to-use-breakpoints-based-on-device\">How to Use Breakpoints Based on Device<\/h3><p>Breakpoints can use the device&rsquo;s width and length as the parameters, typically shown in the pixel values. Here&rsquo;s an example of them:<\/p><pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">        <div><pre><code class=\"mw-64 mw-22-md d-block language-css line-numbers\">\/* Portrait iPhone 6 to 8 *\/\n@media only screen\nand (min-width: 375px)\nand (max-width: 667px)\nand (-webkit-min-device-pixel-ratio: 2)\nand (orientation: portrait){\n...\n}<\/code><\/pre><\/div>\n         <\/pre><p>However, determining device-based breakpoints might be tricky since their screen resolutions vary. It is also time-consuming since developers must add CSS breakpoints every time a new device is released.<\/p><p>Instead of setting a breakpoint for specific devices, you can group them based on resolutions. Here&rsquo;s the code example:<\/p><pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">\/* Small devices (portrait tablets and large phones, 600px and up) *\/\n@media only screen and (min-width: 600px) {...}\n\/* Medium devices (landscape tablets, 768px and up) *\/\n@media only screen and (min-width: 768px) {...}\n\/* Extra large devices (large laptops and desktops, 1200px and up) *\/\n@media only screen and (min-width: 1200px) {...}<\/pre><p>While it&rsquo;s possible to set breakpoints only for popular devices, we don&rsquo;t recommend it since your target audience may use various devices.<\/p><h3 class=\"wp-block-heading\" id=\"h-how-to-use-breakpoints-based-on-content\">How to Use Breakpoints Based on Content<\/h3><p>You can set your breakpoints based on your site&rsquo;s content. As a result, you won&rsquo;t need to add a new breakpoint whenever a device comes out, saving time and keeping your site code clean.&nbsp;<\/p><p>With this method, you add breakpoints on the positions where the content starts to look misaligned or distorted when rendered on a different screen size.&nbsp;<\/p><p>You can set the parameter in two ways &ndash; using a minimum width pixel value or range. For example, the following will run the CSS code for devices with a min screen width of <strong>720<\/strong> pixels:<\/p><pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">        <div><pre><code class=\"mw-64 mw-22-md d-block language-css line-numbers\">@media only screen (min-width: 720px){\n...\n}<\/code><\/pre><\/div>\n        <\/pre><p>Meanwhile, the following applies if the device width is between <strong>720<\/strong> and <strong>1280<\/strong> pixels:<\/p><pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\" data-enlighter-theme=\"\" data-enlighter-highlight=\"\" data-enlighter-linenumbers=\"\" data-enlighter-lineoffset=\"\" data-enlighter-title=\"\" data-enlighter-group=\"\">css]@media only screen and (min-width: 720px) and (max-width: 1280px){\n&hellip;\n}[\/css]<\/pre><h2 class=\"wp-block-heading\" id=\"h-how-to-use-min-width-or-max-width-css-breakpoints\">How to Use min-width or max-width CSS Breakpoints<\/h2><p>Additionally, you can set breakpoints using a specific value with <strong>min-width,<\/strong> <strong>max-width,<\/strong> or both to define a range. Each of them is ideal for a particular use case.<\/p><p>Use <strong>min-width <\/strong>breakpoints when developing a website with the mobile-first approach. It means you set the default CSS for the smaller screen and adjust it for larger devices.&nbsp;<\/p><p>Conversely, when developing for larger devices, use <strong>max-width<\/strong> breakpoints and rearrange your website for smaller screens. Use both only when you are particular about your site&rsquo;s appearance on a certain device.<\/p><p><div class=\"protip\">\n                    <h4 class=\"title\">Pro Tip<\/h4>\n                    <p>In addition to screen adjustment, you can use breakpoint with other media queries like print and speech.<\/p>\n                <\/div>\n\n\n\n<\/p><h2 class=\"wp-block-heading\" id=\"h-media-query-breakpoints\">Media Query Breakpoints<\/h2><p>To set your media query breakpoints, determine what devices visitors use to render your website. They may use computers, tablets, or mobile phones.&nbsp;<\/p><p>The common breakpoints for these devices are based on their resolution. Some of the most popular ones are 1920&times;1080, 1366&times;768, and 360&times;640.&nbsp;<\/p><p>Alternatively, you may use different frameworks&rsquo; breakpoints. Since they are optimized for the mobile-first approach, use them as references when developing for larger-screen devices.&nbsp;<\/p><p>Here are a few examples of popular frameworks with their breakpoints:<\/p><ul class=\"wp-block-list\">\n<li><a href=\"\/ng\/tutorials\/what-is-bootstrap\/\"><strong>Bootstrap<\/strong><\/a><strong> <\/strong>&ndash; 576px, 768px, 992px, 1200px, and 1400px.<\/li>\n\n\n\n<li><a href=\"https:\/\/get.foundation\/\"><strong>Foundation<\/strong><\/a><strong> <\/strong>&ndash; 640px, 1024px, and any size for smaller devices.<\/li>\n\n\n\n<li><a href=\"https:\/\/bulma.io\/\"><strong>Bulma<\/strong><\/a> &ndash;&nbsp; 768px, 769px, 1024px, 1216px, and 1408px.<\/li>\n<\/ul><h2 class=\"wp-block-heading\" id=\"h-tips-for-using-css-breakpoints-for-responsive-design\">Tips for Using CSS Breakpoints for Responsive Design<\/h2><p>Consider the following tips when using CSS breakpoints to ensure your website&rsquo;s responsiveness.<\/p><p><strong>Minimize HTML, CSS, and JavaScript<\/strong><\/p><p><a href=\"\/ng\/tutorials\/website\/improving-website-performance-minifying-css-html-and-javascript\">Minifying your site code<\/a> helps improve your site responsiveness by removing unnecessary characters.&nbsp;<\/p><div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><a href=\"\/tutorials\/wp-content\/uploads\/sites\/2\/2023\/02\/CSS-code-minified-in-CSSNano.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1444\" height=\"589\" src=\"https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/CSS-code-minified-in-CSSNano.png\/public\" alt=\"CSS code minified in CSSNano\" class=\"wp-image-78484\" srcset=\"https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/CSS-code-minified-in-CSSNano.png\/w=1444,fit=scale-down 1444w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/CSS-code-minified-in-CSSNano.png\/w=300,fit=scale-down 300w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/CSS-code-minified-in-CSSNano.png\/w=1024,fit=scale-down 1024w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/CSS-code-minified-in-CSSNano.png\/w=150,fit=scale-down 150w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/CSS-code-minified-in-CSSNano.png\/w=768,fit=scale-down 768w\" sizes=\"auto, (max-width: 1444px) 100vw, 1444px\" \/><\/a><\/figure><\/div><p>Simpler code runs more efficiently, allowing your site to adjust its layout more quickly. It is especially beneficial if your site uses multiple breakpoints and CSS media queries.&nbsp;<\/p><p><strong>Prioritize Mobile Devices<\/strong><\/p><p>When <a href=\"\/ng\/tutorials\/how-to-design-a-website\">designing a website<\/a>, set your default styles for small devices and adjust them for bigger screens. It ensures your <a href=\"\/ng\/tutorials\/mobile-friendly-website\">website is mobile-friendly<\/a> and responsive across different devices.&nbsp;<\/p><p>Prioritizing mobile devices also helps simplify the development process since designing for smaller screens is more complicated.<\/p><p><strong>Simplify the Mobile View<\/strong><\/p><p>In addition to resizing, simplify your website for a mobile view. It helps improve your page&rsquo;s loading speed and usability across different platforms.<\/p><p>To optimize your website for mobile viewing, remove unnecessary content and rearrange its navigation. Use breakpoints to allow the site to hide and reposition those elements automatically.<\/p><p><strong>Name Your Ranges Sensibly<\/strong><\/p><p>Your breakpoints ranges should be descriptive and easy to understand. Ideally, the range should specify the device&rsquo;s type and orientation, like &ldquo;portrait iPhone X.&rdquo;&nbsp;<\/p><p>For device groups, use names that describe their screen sizes, such as &ldquo;medium landscape tablets&rdquo; or &ldquo;large portrait smartphones.&rdquo;&nbsp;<\/p><p><strong>Use DevTools to Enter Large Numbers on Larger Screens<\/strong><\/p><p>You may need to create a breakpoint for screens larger than your device. In that case, use Google DevTools&rsquo; <strong>Toggle Device Toolbar<\/strong> feature to simulate how the breakpoints look on different viewport sizes.<\/p><div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><a href=\"\/tutorials\/wp-content\/uploads\/sites\/2\/2023\/02\/Google-DevTool_s-Simulation-feature-location-in-Chrome.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1460\" height=\"196\" src=\"https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/Google-DevTool_s-Simulation-feature-location-in-Chrome.png\/public\" alt=\"Google DevTool's Simulation feature location in Chrome\" class=\"wp-image-78485\" srcset=\"https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/Google-DevTool_s-Simulation-feature-location-in-Chrome.png\/w=1460,fit=scale-down 1460w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/Google-DevTool_s-Simulation-feature-location-in-Chrome.png\/w=300,fit=scale-down 300w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/Google-DevTool_s-Simulation-feature-location-in-Chrome.png\/w=1024,fit=scale-down 1024w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/Google-DevTool_s-Simulation-feature-location-in-Chrome.png\/w=150,fit=scale-down 150w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/Google-DevTool_s-Simulation-feature-location-in-Chrome.png\/w=768,fit=scale-down 768w\" sizes=\"auto, (max-width: 1460px) 100vw, 1460px\" \/><\/a><\/figure><\/div><p>To access it, open <a href=\"\/ng\/tutorials\/website\/how-to-inspect-and-change-style-using-google-chrome\">Google Chrome&rsquo;s inspect element<\/a> and find the phone and tablet icon. At the top, you will see dimension fields where you can enter a custom screen resolution.<\/p><div class=\"wp-block-image\"><figure class=\"aligncenter size-large\"><a href=\"\/tutorials\/wp-content\/uploads\/sites\/2\/2023\/02\/The-custom-resolution-fields-in-Google-DevTool.png\"><img loading=\"lazy\" decoding=\"async\" width=\"1460\" height=\"367\" src=\"https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/The-custom-resolution-fields-in-Google-DevTool.png\/public\" alt=\"The custom resolution fields in Google DevTool\" class=\"wp-image-78486\" srcset=\"https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/The-custom-resolution-fields-in-Google-DevTool.png\/w=1460,fit=scale-down 1460w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/The-custom-resolution-fields-in-Google-DevTool.png\/w=300,fit=scale-down 300w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/The-custom-resolution-fields-in-Google-DevTool.png\/w=1024,fit=scale-down 1024w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/The-custom-resolution-fields-in-Google-DevTool.png\/w=150,fit=scale-down 150w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/02\/The-custom-resolution-fields-in-Google-DevTool.png\/w=768,fit=scale-down 768w\" sizes=\"auto, (max-width: 1460px) 100vw, 1460px\" \/><\/a><\/figure><\/div><h2 class=\"wp-block-heading\" id=\"h-conclusion\">Conclusion<\/h2><p>CSS breakpoints determine a website&rsquo;s size and layout on different screen sizes. They work with CSS media queries to allow your site to adjust itself according to users&rsquo; devices.<\/p><p>You can set breakpoints based on the device&rsquo;s screen size or the website&rsquo;s content. We don&rsquo;t recommend the former since you must add more lines of code whenever new devices come out.&nbsp;<\/p><p>To set your breakpoint, define the target device&rsquo;s screen min and max width. Alternatively, use the ones that the web development framework provides, like bootstrap breakpoints.&nbsp;<\/p><p>When it comes to ensuring your website is fully responsive, don&rsquo;t forget to minify your site code, name your ranges sensibly, and use the mobile-first approach.<\/p><p>Besides setting CSS breakpoints right, remember to choose a suitable web hosting service to ensure your site is accessible and works fine.&nbsp;<\/p><?xml encoding=\"utf-8\" ?><figure class=\"wp-block-image size-full\"><a class=\"hgr-tutorials-cta hgr-tutorials-cta-web-hosting\" href=\"\/ng\/web-hosting\" target=\"_blank\" rel=\"noreferrer noopener\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"300\" src=\"https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/11\/Web-hosting_in-text-banner.png\/public\" alt=\"Hostinger web hosting banner\" class=\"wp-image-98604\" srcset=\"https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/11\/Web-hosting_in-text-banner.png\/w=1024,fit=scale-down 1024w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/11\/Web-hosting_in-text-banner.png\/w=300,fit=scale-down 300w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/11\/Web-hosting_in-text-banner.png\/w=150,fit=scale-down 150w, https:\/\/imagedelivery.net\/LqiWLm-3MGbYHtFuUbcBtA\/wp-content\/uploads\/sites\/2\/2023\/11\/Web-hosting_in-text-banner.png\/w=768,fit=scale-down 768w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure><h2 class=\"wp-block-heading\" id=\"h-css-breakpoints-faq\">CSS Breakpoints FAQ<\/h2><p>In this section, we&rsquo;ll answer some common questions about CSS breakpoints to help you understand them more.&nbsp;<\/p><div class=\"schema-faq wp-block-yoast-faq-block\"><div class=\"schema-faq-section\" id=\"faq-question-1676640801856\"><h3 class=\"schema-faq-question\">Can Breakpoints Use Pixels, Ems, or Percentages?<\/h3> <p class=\"schema-faq-answer\">Yes, you can use pixels, ems, and percentages. Min and max-width breakpoints also support different <a href=\"https:\/\/www.w3schools.com\/cssref\/pr_dim_max-width.php\">property values<\/a> like <strong>cm<\/strong>, <strong>mm<\/strong>, and <strong>pt<\/strong>.<\/p> <\/div> <div class=\"schema-faq-section\" id=\"faq-question-1676640810313\"><h3 class=\"schema-faq-question\">Which CSS Unit Is Best for Responsive Design?<\/h3> <p class=\"schema-faq-answer\">Relative units like percentages are ideal for responsive design as they can adjust based on the parent element.<\/p> <\/div> <div class=\"schema-faq-section\" id=\"faq-question-1676640820347\"><h3 class=\"schema-faq-question\">Which CSS Breakpoints Should You Use With SASS?<\/h3> <p class=\"schema-faq-answer\">With SASS and SCSS, use the <strong>@mixin<\/strong> breakpoint. It allows you to create more declarative breakpoints that are easier to reuse throughout your website.&nbsp;<\/p> <\/div> <\/div>\n","protected":false},"excerpt":{"rendered":"<p>CSS breakpoints are values that determine how a website looks on different screen sizes. When visitors&rsquo; devices reach their breakpoints, the website content responds and adjusts accordingly.&nbsp; These breakpoints, together with CSS media queries, are responsible for a responsive website design. In short, they make your website look proportional when viewed on a different screen [&#8230;]<\/p>\n<p><a class=\"btn btn-secondary understrap-read-more-link\" href=\"\/ng\/tutorials\/css-breakpoints\">Read More&#8230;<\/a><\/p>\n","protected":false},"author":337,"featured_media":144174,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"rank_math_title":"How to Use CSS Breakpoints for Responsive Design + Tips","rank_math_description":"CSS breakpoints are pixel values that a developer can define CSS. Learn how to set the most common breakpoints + useful tips in this article.","rank_math_focus_keyword":"css breakpoints","footnotes":""},"categories":[22603],"tags":[],"class_list":["post-78481","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-website-development"],"hreflangs":[{"locale":"en-US","link":"https:\/\/www.hostinger.com\/tutorials\/css-breakpoints","default":0},{"locale":"pt-BR","link":"https:\/\/www.hostinger.com\/br\/tutoriais\/breakpoints-css","default":0},{"locale":"en-UK","link":"https:\/\/www.hostinger.com\/uk\/tutorials\/css-breakpoints","default":0},{"locale":"en-MY","link":"https:\/\/www.hostinger.com\/my\/tutorials\/how-to-use-css-breakpoints-for-responsive-design-most-common-media-breakpoints-tips","default":0},{"locale":"en-PH","link":"https:\/\/www.hostinger.com\/ph\/tutorials\/how-to-use-css-breakpoints-for-responsive-design-most-common-media-breakpoints-tips","default":0},{"locale":"pt-PT","link":"https:\/\/www.hostinger.com\/pt\/tutoriais\/breakpoints-css","default":0},{"locale":"en-IN","link":"https:\/\/www.hostinger.com\/in\/tutorials\/css-breakpoints","default":0},{"locale":"en-CA","link":"https:\/\/www.hostinger.com\/ca\/tutorials\/css-breakpoints","default":0},{"locale":"en-AU","link":"https:\/\/www.hostinger.com\/au\/tutorials\/css-breakpoints","default":0},{"locale":"en-NG","link":"https:\/\/www.hostinger.com\/ng\/tutorials\/css-breakpoints","default":0}],"_links":{"self":[{"href":"https:\/\/www.hostinger.com\/ng\/tutorials\/wp-json\/wp\/v2\/posts\/78481","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hostinger.com\/ng\/tutorials\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hostinger.com\/ng\/tutorials\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hostinger.com\/ng\/tutorials\/wp-json\/wp\/v2\/users\/337"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hostinger.com\/ng\/tutorials\/wp-json\/wp\/v2\/comments?post=78481"}],"version-history":[{"count":11,"href":"https:\/\/www.hostinger.com\/ng\/tutorials\/wp-json\/wp\/v2\/posts\/78481\/revisions"}],"predecessor-version":[{"id":144173,"href":"https:\/\/www.hostinger.com\/ng\/tutorials\/wp-json\/wp\/v2\/posts\/78481\/revisions\/144173"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.hostinger.com\/ng\/tutorials\/wp-json\/wp\/v2\/media\/144174"}],"wp:attachment":[{"href":"https:\/\/www.hostinger.com\/ng\/tutorials\/wp-json\/wp\/v2\/media?parent=78481"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hostinger.com\/ng\/tutorials\/wp-json\/wp\/v2\/categories?post=78481"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hostinger.com\/ng\/tutorials\/wp-json\/wp\/v2\/tags?post=78481"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}