{"id":2039,"date":"2020-08-24T10:37:09","date_gmt":"2020-08-24T10:37:09","guid":{"rendered":"https:\/\/localhost\/mysite\/vi\/?p=2039"},"modified":"2020-08-24T10:37:09","modified_gmt":"2020-08-24T10:37:09","slug":"20-useful-css-tips-for-beginners","status":"publish","type":"post","link":"https:\/\/vivustandard.com\/vi\/2020\/08\/24\/20-useful-css-tips-for-beginners\/","title":{"rendered":"20 Useful CSS Tips For Beginners"},"content":{"rendered":"\n<p>n the old days, we depend a lot on&nbsp;developers&nbsp;and programmers to help update the website, even when it\u2019s just a minor one. Thanks to the CSS and it\u2019s flexibility, styles can be extracted independently away from the codes. Now, with some basic understanding of CSS, even a novice can easily change the style of a website.<\/p>\n\n\n\n<p>Whether you are interested in picking up\u00a0CSS\u00a0to create your own website, or merely to tweak your blog\u2019s look and feel a little \u2013 it\u2019s always good to start with the fundamentals to gain a stronger foundation. Let\u2019s take a look at some\u00a0<strong>CSS Tips<\/strong>\u00a0we thought might be useful for\u00a0<em>beginners<\/em>.<\/p>\n\n\n\n<p>Use\u00a0<code>reset.css<\/code><\/p>\n\n\n\n<p>When it comes to rendering CSS styles, browsers like Firefox and&nbsp;Internet Explorer&nbsp;have different ways of handling them.&nbsp;<code>reset.css<\/code>&nbsp;resets all fundamental styles, so you starts with a real blank new stylesheets.<\/p>\n\n\n\n<p>Here are few commonly used&nbsp;<code>reset.css<\/code>&nbsp;frameworks:<\/p>\n\n\n\n<ul><li><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https:\/\/yuilibrary.com\/yui\/docs\/cssreset\/\">Yahoo Reset CSS<\/a><\/li><li><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https:\/\/gist.github.com\/DavidWells\/18e73022e723037a50d6\">Eric Meyer\u2019s CSS Reset<\/a><\/li><\/ul>\n\n\n\n<p>Use Shorthand CSS<\/p>\n\n\n\n<p>Shorthand CSS gives you a shorter way of writing your CSS codes, and most important of all \u2013 it makes the&nbsp;code&nbsp;clearner and easier to understand.<\/p>\n\n\n\n<p><strong>More related:<\/strong><\/p>\n\n\n\n<ul><li><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/www.sitepoint.com\/article\/introduction-css-shorthand\/\">Introduction to CSS Shorthand<\/a><\/li><li><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/www.javascriptkit.com\/dhtmltutors\/cssshorthand.shtml\">Useful CSS shorthand properties<\/a><\/li><\/ul>\n\n\n\n<h4>Understanding&nbsp;<code>Class<\/code>&nbsp;and&nbsp;<code>ID<\/code><\/h4>\n\n\n\n<p>These two selectors often confuse beginners. In CSS,&nbsp;<code>class<\/code>&nbsp;is represented by a dot &#8220;.&#8221; while&nbsp;<code>id<\/code>&nbsp;is a hash \u2018#&#8221;. In a nutshell&nbsp;<code>id<\/code>&nbsp;is used on&nbsp;style&nbsp;that is unique and don\u2019t repeat itself,&nbsp;<code>class<\/code>&nbsp;on the other side, can be re-use.<\/p>\n\n\n\n<p><strong>More related:<\/strong><\/p>\n\n\n\n<ul><li><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https:\/\/www.htmldog.com\/guides\/css\/intermediate\/classid\/\">Class vs. ID<\/a><\/li><li><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https:\/\/css-tricks.com\/the-difference-between-id-and-class\/\">When to use Class, ID<\/a><\/li><\/ul>\n\n\n\n<h4>Power of&nbsp;<code>&lt;li&gt;<\/code><\/h4>\n\n\n\n<p><code>&lt;li&gt;<\/code>&nbsp;a.k.a link&nbsp;list, is very useful when they are use correctly with&nbsp;<code>&lt;ol&gt;<\/code>&nbsp;or&nbsp;<code>&lt;ul&gt;<\/code>, particulary to style a navigation menu.<\/p>\n\n\n\n<h4>Forget&nbsp;<code>&lt;table&gt;<\/code>, try&nbsp;<code>&lt;div&gt;<\/code><\/h4>\n\n\n\n<p>One of the greatest&nbsp;advantage&nbsp;of CSS is the use of&nbsp;<code>&lt;div&gt;<\/code>&nbsp;to achieve total flexibility in terms of styling.&nbsp;<code>&lt;div&gt;<\/code>&nbsp;are unlike&nbsp;<code>&lt;table&gt;,<\/code>&nbsp;where contents are \u2018locked\u2019 within a&nbsp;<code>&lt;td&gt;<\/code>\u2018s cell. It\u2019s safe to say most&nbsp;<code>&lt;table&gt;<\/code>&nbsp;layouts are achievable with the use of&nbsp;<code>&lt;div&gt;<\/code>&nbsp;and proper styling, well maybe except massive tabular contents.<\/p>\n\n\n\n<p><strong>More related:<\/strong><\/p>\n\n\n\n<ul><li><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/www.alistapart.com\/stories\/practicalcss\/\">Tables are dead<\/a><\/li><li><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/www.sitepoint.com\/article\/tables-vs-css\/\">Tables Vs. CSS<\/a><\/li><li><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/www.decloak.com\/Dev\/CSSTables\/CSS_Tables_01.aspx\">CSS vs tables<\/a><\/li><\/ul>\n\n\n\n<h4>CSS Debugging Tools<\/h4>\n\n\n\n<p>It\u2019s always good to get instant preview of the layout while tweaking the CSS, it helps understanding and&nbsp;debugging&nbsp;CSS styles better.<\/p>\n\n\n\n<p>Here are some free CSS debugging tools you can install on your browser:<\/p>\n\n\n\n<ul><li><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/chrispederick.com\/work\/web-developer\/\">FireFox Web Developer<\/a><\/li><li><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https:\/\/developer.mozilla.org\/en-US\/docs\/Tools\/Add-ons\/DOM_Inspector\">DOM Inspector<\/a><\/li><li><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/getfirebug.com\/\">Firebug<\/a><\/li><\/ul>\n\n\n\n<h4>Power of&nbsp;<code>&lt;li&gt;<\/code><\/h4>\n\n\n\n<p><code>&lt;li&gt;<\/code>&nbsp;a.k.a link&nbsp;list, is very useful when they are use correctly with&nbsp;<code>&lt;ol&gt;<\/code>&nbsp;or&nbsp;<code>&lt;ul&gt;<\/code>, particulary to style a navigation menu.<\/p>\n\n\n\n<h4>Forget&nbsp;<code>&lt;table&gt;<\/code>, try&nbsp;<code>&lt;div&gt;<\/code><\/h4>\n\n\n\n<p>One of the greatest&nbsp;advantage&nbsp;of CSS is the use of&nbsp;<code>&lt;div&gt;<\/code>&nbsp;to achieve total flexibility in terms of styling.&nbsp;<code>&lt;div&gt;<\/code>&nbsp;are unlike&nbsp;<code>&lt;table&gt;,<\/code>&nbsp;where contents are \u2018locked\u2019 within a&nbsp;<code>&lt;td&gt;<\/code>\u2018s cell. It\u2019s safe to say most&nbsp;<code>&lt;table&gt;<\/code>&nbsp;layouts are achievable with the use of&nbsp;<code>&lt;div&gt;<\/code>&nbsp;and proper styling, well maybe except massive tabular contents.<\/p>\n\n\n\n<p><strong>More related:<\/strong><\/p>\n\n\n\n<ul><li><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/www.alistapart.com\/stories\/practicalcss\/\">Tables are dead<\/a><\/li><li><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/www.sitepoint.com\/article\/tables-vs-css\/\">Tables Vs. CSS<\/a><\/li><li><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/www.decloak.com\/Dev\/CSSTables\/CSS_Tables_01.aspx\">CSS vs tables<\/a><\/li><\/ul>\n\n\n\n<h4>CSS Debugging Tools<\/h4>\n\n\n\n<p>It\u2019s always good to get instant preview of the layout while tweaking the CSS, it helps understanding and&nbsp;debugging&nbsp;CSS styles better.<\/p>\n\n\n\n<p>Here are some free CSS debugging tools you can install on your browser:<\/p>\n\n\n\n<ul><li><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/chrispederick.com\/work\/web-developer\/\">FireFox Web Developer<\/a><\/li><li><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https:\/\/developer.mozilla.org\/en-US\/docs\/Tools\/Add-ons\/DOM_Inspector\">DOM Inspector<\/a><\/li><li><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/getfirebug.com\/\">Firebug<\/a><\/li><\/ul>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https:\/\/assets.hongkiat.com\/uploads\/css_beginners\/firebug.jpg\" alt=\"firebug\"\/><\/figure>\n\n\n\n<h4>Avoid Superfluous Selectors<\/h4>\n\n\n\n<p>Sometimes your CSS declaration can be simpler, meaning if you find yourself&nbsp;codingADVERTISEMENTjavascript:window[&#8216;contents&#8217;]&nbsp;the following:<\/p>\n\n\n\n<figure class=\"wp-block-table is-style-regular\"><table><tbody><tr><td>12345<\/td><td><code>ul li { ... }<\/code>&nbsp;<code>ol li { ... }<\/code>&nbsp;<code>table tr td { ... }<\/code><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>They can be shorten down to just<\/p>\n\n\n\n<figure class=\"wp-block-table is-style-regular\"><table><tbody><tr><td>123<\/td><td><code>li { ... }<\/code>&nbsp;<code>td { ... }<\/code><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p><strong>Explanation:<\/strong>&nbsp;<code>&lt;li&gt;<\/code>&nbsp;will only exist within&nbsp;<code>&lt;ul&gt;<\/code>&nbsp;or&nbsp;<code>&lt;ol&gt;<\/code>&nbsp;and&nbsp;<code>&lt;td&gt;<\/code>&nbsp;will only be inside&nbsp;<code>&lt;tr&gt;<\/code>&nbsp;and&nbsp;<code>&lt;table&gt;<\/code>&nbsp;so there\u2019s really not necessary to re-insert them.<\/p>\n\n\n\n<h4>Knowing&nbsp;<code>!important<\/code><\/h4>\n\n\n\n<p>Any style marked with&nbsp;<code>!important<\/code>&nbsp;will be taken into use regardlessly if there\u2019s a overwriting rule below it.<\/p>\n\n\n\n<figure class=\"wp-block-table is-style-regular\"><table><tbody><tr><td>1<\/td><td><code>.page { <\/code><code>background-color<\/code><code>:<\/code><code>blue<\/code> <code>!important<\/code><code>; <\/code><code>background-color<\/code><code>:<\/code><code>red<\/code><code>;}<\/code><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>In the example above,&nbsp;<code>background-color:blue<\/code>&nbsp;will be adapted because it\u2019s marked with&nbsp;<code>!important<\/code>, even when there\u2019s a&nbsp;<code>background-color:red;<\/code>&nbsp;below it.<\/p>\n\n\n\n<p><code>!important<\/code>&nbsp;is used in situation where you want to force a style without something overwriting it, however it may not work in Internet Explorer.<\/p>\n\n\n\n<h4>Replace Text with Image<\/h4>\n\n\n\n<p>This is commonly practice to replace&nbsp;<code>&lt;h1&gt;title&lt;\/h1&gt;<\/code>&nbsp;from a text based title to an image. Here\u2019s how you do it.<\/p>\n\n\n\n<figure class=\"wp-block-table is-style-regular\"><table><tbody><tr><td>123456<\/td><td><code>h<\/code><code>1<\/code> <code>{<\/code><code>text-indent<\/code><code>:<\/code><code>-9999px<\/code><code>;<\/code><code>background<\/code><code>:<\/code><code>url<\/code><code>(<\/code><code>\"title.jpg\"<\/code><code>) <\/code><code>no-repeat<\/code><code>;<\/code><code>width<\/code><code>:<\/code><code>100px<\/code><code>;<\/code><code>height<\/code><code>:<\/code><code>50px<\/code><code>;<\/code><code>}<\/code><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Explanation:&nbsp;<code>text-indent:-9999px;<\/code>&nbsp;throws your text title off screen, replaced by an image declared by&nbsp;<code>background: {...}<\/code>&nbsp;with a fixed&nbsp;<code>width<\/code>&nbsp;and&nbsp;<code>height<\/code>.<\/p>\n\n\n\n<h4>Understand CSS Positioning<\/h4>\n\n\n\n<p>The following article gives you a clear understanding in using CSS positioning \u2013&nbsp;<code>position: {...}<\/code><\/p>\n\n\n\n<p><strong>Related:<\/strong>&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/www.barelyfitz.com\/screencast\/html-training\/css\/positioning\/\"><strong>Learn CSS Positioning in Ten Steps<\/strong><\/a><\/p>\n\n\n\n<h4>CSS&nbsp;<code>@import<\/code>&nbsp;vs&nbsp;<code>&lt;link&gt;<\/code><\/h4>\n\n\n\n<p>There are 2 ways to call an external CSS file \u2013 respectively using&nbsp;<code>@import<\/code>&nbsp;and&nbsp;<code>&lt;link&gt;<\/code>. If you are uncertain which method to use, here\u2019s few articles to help you decide.<\/p>\n\n\n\n<p><strong>Related:&nbsp;<\/strong><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https:\/\/www.lifewire.com\/difference-between-important-and-link-3466404\"><strong>Difference Between @import and link<\/strong><\/a><\/p>\n\n\n\n<h4>Designing Forms in CSS<\/h4>\n\n\n\n<p>Web forms can be easily design and customize with CSS. These following articles show you how:<\/p>\n\n\n\n<p><strong>Related:<\/strong>&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/jeffhowden.com\/code\/css\/forms\/\"><strong>Table-less form<\/strong><\/a>,&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/www.456bereastreet.com\/archive\/200410\/styling_even_more_form_controls\/\"><strong>Styling even more form controls<\/strong><\/a><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https:\/\/assets.hongkiat.com\/uploads\/css_beginners\/select.jpg\" alt=\"design forms css\"\/><\/figure>\n\n\n\n<h4>Get Inspired<\/h4>\n\n\n\n<p>If you are looking around for nicely designed CSS-based website for inspiration, or just simply browsing to find some good UI, here are some CSS showcase site we recommend:<\/p>\n\n\n\n<ul><li><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/cssmania.com\/\">CSS Mania<\/a><\/li><li><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/www.cssleak.com\/\">CSS Leak<\/a><\/li><\/ul>\n\n\n\n<h4>Keep CSS Codes Clean<\/h4>\n\n\n\n<p>If your CSS codes are messy, you are going to end up coding in confusion and having a hard time refereing the previous code. For starters, you can create proper indentation, comment them properly.<\/p>\n\n\n\n<p><strong>More<\/strong>&nbsp;\u2013&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/www.smashingmagazine.com\/2008\/11\/12\/12-principles-for-keeping-your-code-clean\/\"><strong>12 Principles For Keeping Your Code Clean<\/strong><\/a>,&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/www.lonniebest.com\/FormatCSS\/\"><strong>Format CSS Codes Online<\/strong><\/a><\/p>\n\n\n\n<h4>Typography Measurement:&nbsp;<code>px<\/code>&nbsp;vs&nbsp;<code>em<\/code><\/h4>\n\n\n\n<p>Having problem choosing when to use measurement unit&nbsp;<code>px<\/code>&nbsp;or&nbsp;<code>em<\/code>? These following articles might give you a better understanding on the typography units.<\/p>\n\n\n\n<h4>CSS Browsers Compatibility Table<\/h4>\n\n\n\n<p>We all know each browser has different ways of rendering CSS styles. It\u2019s good to have a reference, a chart or a list that shows the entire CSS compatibility for each browser.<\/p>\n\n\n\n<p>CSS support table:&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/www.quirksmode.org\/css\/contents.html\"><strong>#1<\/strong><\/a>,&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/www.webdevout.net\/browser-support-css\"><strong>#2<\/strong><\/a>,&nbsp;<strong><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/www.richinstyle.com\/bugs\/table.html\">#3<\/a><\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https:\/\/assets.hongkiat.com\/uploads\/css_beginners\/csstable.jpg\" alt=\"css table\"\/><\/figure>\n\n\n\n<h4>Design Multicolumns in CSS<\/h4>\n\n\n\n<p>Having problem getting the left, middle and right column to align properly? Here are some articles that might help:<\/p>\n\n\n\n<ul><li><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/www.alistapart.com\/articles\/holygrail\">In Search of the Holy Grail<\/a><\/li><li><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/alistapart.com\/articles\/fauxcolumns\/\">Faux Column<\/a><\/li><li><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/www.thenoodleincident.com\/tutorials\/box_lesson\/boxes.html\">Litte Boxes (examples)<\/a><\/li><li><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/alistapart.com\/articles\/multicolumnlayouts\">Multi-Column Layouts Climb Out of the Box<\/a><\/li><li><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/24ways.org\/2008\/absolute-columns\">Absolute Columns<\/a><\/li><\/ul>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https:\/\/assets.hongkiat.com\/uploads\/css_beginners\/multicolumns.jpg\" alt=\"multicolumns\"\/><\/figure>\n\n\n\n<h4>Get a Free CSS Editors<\/h4>\n\n\n\n<p>Dedicated editors are always better than a notepad. Here are some we recommend:<\/p>\n\n\n\n<p><strong>More:<\/strong><\/p>\n\n\n\n<ul><li><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/www.hostm.com\/simplecss-download.m\">Simple CSS<\/a>,&nbsp;<a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/notepad-plus.sourceforge.net\/\">Notepad ++<\/a><\/li><li><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"https:\/\/wordpress.org\/plugins\/simple-css\/\">A Style CSS Editor<\/a><\/li><\/ul>\n\n\n\n<p><a href=\"https:\/\/www.hongkiat.com\/blog\/top-css-editors-reviewed\/\">Top 10 CSS Editors [Review]<\/a><\/p>\n\n\n\n<h4>Top 10 CSS Editors [Review]<\/h4>\n\n\n\n<p>CSS is a simple language that it does not need a special editor to write. But having the&#8230;Read more<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img src=\"https:\/\/assets.hongkiat.com\/uploads\/css_beginners\/notepadplus.jpg\" alt=\"notepad plus\"\/><\/figure>\n\n\n\n<h4>Understanding Media Types<\/h4>\n\n\n\n<p>There are few media types when you declare CSS with&nbsp;<code>&lt;link&gt;<\/code>. print, projection and screen are few of the commonly used types. Understanding and using them in proper ways allow better user accessibility. The following article explains how to deal with CSS Media types.<\/p>\n\n\n\n<p><strong>More:<\/strong><\/p>\n\n\n\n<ul><li><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/www.yourhtmlsource.com\/stylesheets\/cssmediatypes.html\">CSS and Media Types<\/a><\/li><li><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/www.w3.org\/TR\/CSS2\/media.html\">W3 Media Types<\/a><\/li><li><a rel=\"noreferrer noopener\" target=\"_blank\" href=\"http:\/\/www.javascriptkit.com\/dhtmltutors\/cssmedia.shtml\">CSS Media Types<\/a><\/li><\/ul>\n\n\n\n<p class=\"has-text-align-right\">Source: <a href=\"https:\/\/www.hongkiat.com\/blog\/20-useful-css-tips-for-beginners\/\">https:\/\/www.hongkiat.com\/blog\/20-useful-css-tips-for-beginners\/<\/a> <\/p>\n","protected":false},"excerpt":{"rendered":"<p>n the old days, we depend a lot on&nbsp;developers&nbsp;and programmers to help update the website, even when it\u2019s just a minor one. Thanks to the CSS and it\u2019s flexibility, styles &#8230;<\/p>\n","protected":false},"author":1,"featured_media":1860,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[25],"tags":[],"_links":{"self":[{"href":"https:\/\/vivustandard.com\/vi\/wp-json\/wp\/v2\/posts\/2039"}],"collection":[{"href":"https:\/\/vivustandard.com\/vi\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/vivustandard.com\/vi\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/vivustandard.com\/vi\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/vivustandard.com\/vi\/wp-json\/wp\/v2\/comments?post=2039"}],"version-history":[{"count":1,"href":"https:\/\/vivustandard.com\/vi\/wp-json\/wp\/v2\/posts\/2039\/revisions"}],"predecessor-version":[{"id":2040,"href":"https:\/\/vivustandard.com\/vi\/wp-json\/wp\/v2\/posts\/2039\/revisions\/2040"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vivustandard.com\/vi\/wp-json\/wp\/v2\/media\/1860"}],"wp:attachment":[{"href":"https:\/\/vivustandard.com\/vi\/wp-json\/wp\/v2\/media?parent=2039"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/vivustandard.com\/vi\/wp-json\/wp\/v2\/categories?post=2039"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/vivustandard.com\/vi\/wp-json\/wp\/v2\/tags?post=2039"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}