{"id":1791,"date":"2022-02-14T16:09:18","date_gmt":"2022-02-14T16:09:18","guid":{"rendered":"https:\/\/swatilathia.com\/?page_id=1791"},"modified":"2025-08-28T03:17:33","modified_gmt":"2025-08-28T03:17:33","slug":"css-3-tutorial","status":"publish","type":"page","link":"https:\/\/swatilathia.com\/?page_id=1791","title":{"rendered":"CSS 3 Tutorial"},"content":{"rendered":"<body>\n<div id=\"ez-toc-container\" class=\"ez-toc-v2_0_82_2 counter-hierarchy ez-toc-counter ez-toc-grey ez-toc-container-direction\">\n<p class=\"ez-toc-title\" style=\"cursor:inherit\">Table of Contents<\/p>\n<label for=\"ez-toc-cssicon-toggle-item-69e58de2975ab\" class=\"ez-toc-cssicon-toggle-label\"><span class=\"\"><span class=\"eztoc-hide\" style=\"display:none;\">Toggle<\/span><span class=\"ez-toc-icon-toggle-span\"><svg style=\"fill: #999;color:#999\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" class=\"list-377408\" width=\"20px\" height=\"20px\" viewBox=\"0 0 24 24\" fill=\"none\"><path d=\"M6 6H4v2h2V6zm14 0H8v2h12V6zM4 11h2v2H4v-2zm16 0H8v2h12v-2zM4 16h2v2H4v-2zm16 0H8v2h12v-2z\" fill=\"currentColor\"><\/path><\/svg><svg style=\"fill: #999;color:#999\" class=\"arrow-unsorted-368013\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" width=\"10px\" height=\"10px\" viewBox=\"0 0 24 24\" version=\"1.2\" baseProfile=\"tiny\"><path d=\"M18.2 9.3l-6.2-6.3-6.2 6.3c-.2.2-.3.4-.3.7s.1.5.3.7c.2.2.4.3.7.3h11c.3 0 .5-.1.7-.3.2-.2.3-.5.3-.7s-.1-.5-.3-.7zM5.8 14.7l6.2 6.3 6.2-6.3c.2-.2.3-.5.3-.7s-.1-.5-.3-.7c-.2-.2-.4-.3-.7-.3h-11c-.3 0-.5.1-.7.3-.2.2-.3.5-.3.7s.1.5.3.7z\"\/><\/svg><\/span><\/span><\/label><input type=\"checkbox\"  id=\"ez-toc-cssicon-toggle-item-69e58de2975ab\"  aria-label=\"Toggle\" \/><nav><ul class='ez-toc-list ez-toc-list-level-1 ' ><li class='ez-toc-page-1 ez-toc-heading-level-1'><a class=\"ez-toc-link ez-toc-heading-1\" href=\"https:\/\/swatilathia.com\/?page_id=1791\/#CSS3_Border_Property\" >CSS3 Border Property<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-1'><a class=\"ez-toc-link ez-toc-heading-2\" href=\"https:\/\/swatilathia.com\/?page_id=1791\/#CSS3_Background_Property\" >CSS3 Background Property<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-1'><a class=\"ez-toc-link ez-toc-heading-3\" href=\"https:\/\/swatilathia.com\/?page_id=1791\/#CSS3_Gradient_Property\" >CSS3 Gradient Property<\/a><ul class='ez-toc-list-level-2' ><li class='ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-4\" href=\"https:\/\/swatilathia.com\/?page_id=1791\/#Linear_Gradients\" >Linear Gradients<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-5\" href=\"https:\/\/swatilathia.com\/?page_id=1791\/#Radial_Gradient\" >Radial Gradient<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-6\" href=\"https:\/\/swatilathia.com\/?page_id=1791\/#Conic_Gradients\" >Conic Gradients<\/a><\/li><\/ul><\/li><li class='ez-toc-page-1 ez-toc-heading-level-1'><a class=\"ez-toc-link ez-toc-heading-7\" href=\"https:\/\/swatilathia.com\/?page_id=1791\/#CSS3_Box-shadow_Property\" >CSS3 Box-shadow\u00a0Property<\/a><\/li><\/ul><\/nav><\/div>\n<h1 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"CSS3_Border_Property\"><\/span>CSS3 Border Property<span class=\"ez-toc-section-end\"><\/span><\/h1>\n\n\n\n<ul class=\"wp-block-list has-medium-font-size\">\n<li><strong>border-bottom-left-radius <strong>Property<\/strong>: <\/strong>It adds rounded border to the bottom-left corner of a given element. Values may be : %, pixels<\/li>\n\n\n\n<li><strong>border-bottom-right-radius <strong>Property<\/strong>: <\/strong>It adds rounded border to the bottom-right corner of a given element. Values may be : %, pixels<\/li>\n\n\n\n<li><strong>border-top-left-radius <strong>Property<\/strong>: <\/strong>It adds rounded border to the top-left corner of a given element. Values may be : %, pixels<\/li>\n\n\n\n<li><strong>border-top-right-radius <strong>Property<\/strong>: <\/strong>It adds rounded border to the top-right corner of a given element. Values may be : %, pixels<\/li>\n<\/ul>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Example<\/strong>:<\/p>\n\n\n\n<pre class=\"wp-block-code has-medium-font-size\"><code>&lt;html&gt;\n\t&lt;head&gt;\n\t\t&lt;style&gt;\n\t\t\t#e7{\n\t\t\t\tborder-bottom-left-radius:25px;\n\t\t\t\tborder-top-left-radius:25px;\n\t\t\t\tborder-bottom-right-radius:25px;\n\t\t\t\tborder-top-right-radius:25px;\n\t\t\t\tborder:2px solid lightblue;\n\t\t\t}\n\t\t&lt;\/style&gt;\n\t&lt;\/head&gt;\n\t&lt;body&gt;\n\t\t&lt;p id='e7'&gt;Border with radius for each side&lt;\/p&gt;\n\t&lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Output:<\/strong><\/p>\n\n\n\n\n\t\n\t\t<style>\n\t\t\t#e7{\n\t\t\t\tborder-bottom-left-radius:25px;\n\t\t\t\tborder-top-left-radius:25px;\n\t\t\t\tborder-bottom-right-radius:25px;\n\t\t\t\tborder-top-right-radius:25px;\n\t\t\t\tborder:2px solid lightblue;\n\t\t\t}\n\t\t<\/style>\n\t\n\t\n\t\t<p id=\"e7\">Border with radius for each side<\/p>\n\t\n\n\n\n\n<ul class=\"wp-block-list has-medium-font-size\">\n<li class=\"has-medium-font-size\"><strong>border-radius <strong>Property<\/strong>:<\/strong> It adds rounded corners (all four) to given element. It is a shorthand property for all the corners.<\/li>\n<\/ul>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Example<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code has-medium-font-size\"><code>&lt;html&gt;\n\t&lt;head&gt;\n\t\t&lt;style&gt;\n\t\t\t#e8{\n\t\t\t\tborder-radius:5px;\n\t\t\t\tborder:2px solid magenta;\n\t\t\t}\n\t\t&lt;\/style&gt;\n\t&lt;\/head&gt;\n\t&lt;body&gt;\n\t\t&lt;p id='e8'&gt;Border Radius Short hand property for all side&lt;\/p&gt;\n\t&lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Output:<\/strong><\/p>\n\n\n\n\n\t\n\t\t<style>\n\t\t\t#e8{\n\t\t\t\tborder-radius:5px;\n\t\t\t\tborder:2px solid magenta;\n\t\t\t}\n\t\t<\/style>\n\t\n\t\n\t\t<p id=\"e8\">Border Radius Short hand property for all side<\/p>\n\t\n\n\n\n\n<h1 class=\"wp-block-heading\"><span class=\"ez-toc-section\" id=\"CSS3_Background_Property\"><\/span>CSS3 Background Property<span class=\"ez-toc-section-end\"><\/span><\/h1>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"has-medium-font-size\"><strong>background-size <strong>Property<\/strong><\/strong> : It allows you to specify the size of background images. The size can be specified in lengths, percentages, or by using one of the two keywords: contain or cover. The following example resizes a background image to much smaller than the original image (using pixels)<\/li>\n<\/ul>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Example<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code has-medium-font-size\"><code>&lt;html&gt;\n\t&lt;head&gt;\n\t\t&lt;style&gt;\n\t\t\t#p_1{\n\t\t\t\tborder:solid 5px black;\n\t\t\t\tbackground:url(stats.png);\n\t\t\t\tbackground-size:100px 100px;\n\t\t\t\tbackground-repeat:no-repeat;\n\t\t\t\tpadding:100px;\n\t\t\t}\n\t\t&lt;\/style&gt;\n\t&lt;\/head&gt;\n\t&lt;body&gt;\n\t\t&lt;p id='p_1'&gt;According to facts &amp; figures, Google is the most popular search engine all over the globe.&lt;\/p&gt;\n\t&lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list has-medium-font-size\">\n<li class=\"has-medium-font-size\"><strong>Contain<\/strong> scales the background image to be as large as possible (but both its width and its height must fit inside the content area). As such, depending on the proportions of the background image and the background positioning area, there may be some areas of the background which are not covered by the background image.<\/li>\n\n\n\n<li><strong>Cover<\/strong> scales the background image so that the content area is completely covered by the background image (both its width and height are equal to or exceed the content area). As such, some parts of the background image may not be visible in the background positioning area.<\/li>\n<\/ul>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Example<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code has-medium-font-size\"><code>&lt;html&gt;\n\t&lt;head&gt;\n\t\t&lt;style&gt;\n\t\t\t#p1{\n\t\t\t\tborder:solid 5px black;\n\t\t\t\theight:400px;\n\t\t\t\twidth:500px;\n\t\t\t\tbackground:url(flower.png);\n\t\t\t\tbackground-size:contain;\n\t\t\t\tbackground-repeat:no-repeat;\n\t\t\t}\n\t\t\t#p2{\n\t\t\t\tborder:solid 5px black;\n\t\t\t\theight:400px;\n\t\t\t\twidth:500px;\n\t\t\t\tbackground:url(flower.png);\n\t\t\t\tbackground-size:cover;\n\t\t\t\tbackground-repeat:no-repeat;\n\t\t\t}\n\t\t&lt;\/style&gt;\n\t&lt;\/head&gt;\n\t&lt;body&gt;\n\t\t&lt;p id='p1'&gt;Hello World&lt;\/p&gt;&lt;br&gt;&lt;br&gt;\n\t\t&lt;p id='p2'&gt;Hello World&lt;\/p&gt;\n\t&lt;\/body&gt;\n&lt;\/html&gt;\n<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list has-medium-font-size\">\n<li><strong>background-origin<\/strong> <strong>Property<\/strong>: It specifies where the background image is positioned. The property takes three different values:\n<ul class=\"wp-block-list\">\n<li><strong>border-box<\/strong> \u2013 the background image starts from the upper left corner of the border<\/li>\n\n\n\n<li><strong>padding-box<\/strong> \u2013 (default) the background image starts from the upper left corner of the padding edge<\/li>\n\n\n\n<li><strong>content-box<\/strong> \u2013 the background image starts from the upper left corner of the content<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Example<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code has-medium-font-size\"><code>&lt;html&gt;\n\t&lt;head&gt;\n\t\t&lt;style&gt;\n\t\t\t#p1{\n\t\t\t\tborder:double 10px black;\n\t\t\t\tpadding:50px;\n\t\t\t\tbackground:url(flower.jpg);\n\t\t\t\tbackground-repeat:no-repeat;\n\t\t\t\tbackground-origin:border-box;\n\t\t\t}\n\t\t\t#p2{\n\t\t\t\tborder:double 10px black;\n\t\t\t\tpadding:50px;\n\t\t\t\tbackground:url(flower.jpg);\n\t\t\t\tbackground-repeat:no-repeat;\n\t\t\t\tbackground-origin:padding-box;\n\t\t\t}\n\t\t\t#p3{\n\t\t\t\tborder:double 10px black;\n\t\t\t\tpadding:50px;\n\t\t\t\tbackground:url(flower.jpg);\n\t\t\t\tbackground-repeat:no-repeat;\n\t\t\t\tbackground-origin:content-box;\n\t\t\t}\n\t\t&lt;\/style&gt;\n\t&lt;\/head&gt;\n\t&lt;body&gt;\n\t\t&lt;p id=p1&gt;Hello World&lt;\/p&gt;&lt;br&gt;&lt;br&gt;\n\t\t&lt;p id=p2&gt;Hello World&lt;\/p&gt;&lt;br&gt;&lt;br&gt;\n\t\t&lt;p id=p3&gt;Hello World&lt;\/p&gt;\n\t\n\t&lt;\/body&gt;\n&lt;\/html&gt;\n<\/code><\/pre>\n\n\n\n<ul class=\"wp-block-list has-medium-font-size\">\n<li><strong>background-clip <strong>Property<\/strong>:<\/strong> It specifies the painting area of the background. It takes three different values:\n<ul class=\"wp-block-list\">\n<li>border-box \u2013 (default) the background is painted to the outside edge of the border<\/li>\n\n\n\n<li class=\"has-medium-font-size\">padding-box \u2013 the background is painted to the outside edge of the padding<\/li>\n\n\n\n<li class=\"has-medium-font-size\">content-box \u2013 the background is painted within the content box<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code has-medium-font-size\"><code>&lt;html&gt;\n\t&lt;head&gt;\n\t\t&lt;style&gt;\n\t\t\t#p1{\n\t\t\t\t\tborder: 10px dotted black;\n\t\t\t\t\tpadding: 35px;\n\t\t\t\t\tbackground: cyan;\n\t\t\t}\n\t\t\t#p2{\n\t\t\t\t\tborder: 10px dotted black;\n\t\t\t\t\tpadding: 35px;\n\t\t\t\t\tbackground: cyan;\n\t\t\t\t\tbackground-clip:padding-box;\n\t\t\t}\n\t\t\t#p3{\n\t\t\t\t\tborder: 10px dotted black;\n\t\t\t\t\tpadding: 35px;\n\t\t\t\t\tbackground: cyan;\n\t\t\t\t\tbackground-clip:content-box;\n\t\t\t}\n\t\t\t#p4{\n\t\t\t\t\tborder: 10px dotted black;\n\t\t\t\t\tpadding: 35px;\n\t\t\t\t\tbackground: cyan;\n\t\t\t\t\tbackground-clip:border-box;\n\t\t\t}\n\t\t&lt;\/style&gt;\n\t&lt;\/head&gt;\n\t&lt;body&gt;\n\t\t&lt;p id=p1&gt;Hello World&lt;\/p&gt;&lt;br&gt;&lt;br&gt;\n\t\t&lt;p id=p2&gt;Hello World&lt;\/p&gt;&lt;br&gt;&lt;br&gt;\n\t\t&lt;p id=p3&gt;Hello World&lt;\/p&gt;&lt;br&gt;&lt;br&gt;\n\t\t&lt;p id=p4&gt;Hello World&lt;\/p&gt;\n\t\t\n\t&lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Output:<\/strong><\/p>\n\n\n\n\n\t\n\t\t<style>\n\t\t\t#p1{\n\t\t\t\t\tborder: 10px dotted black;\n\t\t\t\t\tpadding: 35px;\n\t\t\t\t\tbackground: cyan;\n\t\t\t}\n\t\t\t#p2{\n\t\t\t\t\tborder: 10px dotted black;\n\t\t\t\t\tpadding: 35px;\n\t\t\t\t\tbackground: cyan;\n\t\t\t\t\tbackground-clip:padding-box;\n\t\t\t}\n\t\t\t#p3{\n\t\t\t\t\tborder: 10px dotted black;\n\t\t\t\t\tpadding: 35px;\n\t\t\t\t\tbackground: cyan;\n\t\t\t\t\tbackground-clip:content-box;\n\t\t\t}\n\t\t\t#p4{\n\t\t\t\t\tborder: 10px dotted black;\n\t\t\t\t\tpadding: 35px;\n\t\t\t\t\tbackground: cyan;\n\t\t\t\t\tbackground-clip:border-box;\n\t\t\t}\n\t\t<\/style>\n\t\n\t\n\t\t<p id=\"p1\">Hello World<\/p><br><br>\n\t\t<p id=\"p2\">Hello World<\/p><br><br>\n\t\t<p id=\"p3\">Hello World<\/p><br><br>\n\t\t<p id=\"p4\">Hello World<\/p>\n\t\t\n\t\n\n\n\n\n<h1 class=\"wp-block-heading\" id=\"gradient-property\"><span class=\"ez-toc-section\" id=\"CSS3_Gradient_Property\"><\/span>CSS3 Gradient Property<span class=\"ez-toc-section-end\"><\/span><\/h1>\n\n\n\n<ul class=\"wp-block-list has-medium-font-size\">\n<li>CSS3 gradients displays smooth transitions between two or more specified colors. There are three types of gradients:\n<ul class=\"wp-block-list\">\n<li><strong>Linear Gradients (moves down\/up\/left\/right\/diagonally)<\/strong><\/li>\n\n\n\n<li><strong>Radial Gradients (defined by their center)<\/strong> <\/li>\n\n\n\n<li><strong>Conic Gradients (rotated around a center point)<\/strong><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"linear-gradients\"><span class=\"ez-toc-section\" id=\"Linear_Gradients\"><\/span><strong>Linear Gradients<\/strong><span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<ul class=\"wp-block-list has-medium-font-size\">\n<li>To create a linear gradient, you have to define at least two colors. These are the colors you want to render smooth transitions among. You can also set a starting point and a direction (or an angle) along with the gradient effect.<\/li>\n<\/ul>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Syntax :<\/strong> background-image: linear-gradient(direction,\u00a0color1,\u00a0color2, \u2026);<\/p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Example<\/strong> : This is default direction : top to bottom linear gradient.<\/p>\n\n\n\n<pre class=\"wp-block-code has-medium-font-size\"><code>&lt;html&gt;\n\t&lt;head&gt;\n\t\t&lt;style&gt;\n\t\t\t#d1{\n\t\t\t\theight:100px;\n                                width:100px;\n\t\t\t\tbackground-image:linear-gradient(pink,purple);\n\t\t\t}\n\t\t&lt;\/style&gt;\n\t&lt;\/head&gt;\n\t&lt;body&gt;\n\t\t&lt;p&gt;Linear Gradient - Top to Bottom&lt;\/p&gt;\n\t\t&lt;div id=d1&gt;&lt;\/div&gt;&lt;br&gt;&lt;br&gt;\n\t&lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Output:<\/strong><\/p>\n\n\n\n\n\t\n\t\t<style>\n\t\t\t#d1{\n\t\t\t\theight:100px;\n                                width:100px;\n\t\t\t\tbackground-image:linear-gradient(pink,purple);\n\t\t\t}\n\t\t<\/style>\n\t\n\t\n\t\t<p>Linear Gradient \u2013 Top to Bottom<\/p>\n\t\t<div id=\"d1\"><\/div><br><br>\n\t\n\n\n\n\n<p class=\"has-medium-font-size\"><strong>Example :<\/strong> To render a transition from left to right, do the following<\/p>\n\n\n\n<pre class=\"wp-block-code has-medium-font-size\"><code>&lt;html&gt;\n\t&lt;head&gt;\n\t\t&lt;style&gt;\n\t\t\t#d2{\n\t\t\theight:100px;\n                        width:100px;\n\t\t\tbackground-image:linear-gradient(to right,pink,purple);\n\t\t\t}\n\t\t&lt;\/style&gt;\n\t&lt;\/head&gt;\n\t&lt;body&gt;\n\t\t&lt;p&gt;Linear Gradient - left to right&lt;\/p&gt;\n\t\t&lt;div id=d2&gt;&lt;\/div&gt;&lt;br&gt;&lt;br&gt;\n\t&lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Output:<\/strong><\/p>\n\n\n\n\n\t\n\t\t<style>\n\t\t\t#d2{\n\t\t\theight:100px;\n                        width:100px;\n\t\t\tbackground-image:linear-gradient(to right,pink,purple);\n\t\t\t}\n\t\t<\/style>\n\t\n\t\n\t\t<p>Linear Gradient \u2013 left to right<\/p>\n\t\t<div id=\"d2\"><\/div><br><br>\n\t\n\n\n\n\n<p class=\"has-medium-font-size\"><strong>Example :<\/strong> To render a transition from left to bottom right(diagonal), do the following<\/p>\n\n\n\n<pre class=\"wp-block-code has-medium-font-size\"><code>&lt;html&gt;\n\t&lt;head&gt;\n\t\t&lt;style&gt;\n\t\t#d3{\n\t\theight:100px;\n                width:100px;\n\t\tbackground-image:linear-gradient(to bottom right,pink,red);\n\t\t}\n\t\t&lt;\/style&gt;\n\t&lt;\/head&gt;\n\t&lt;body&gt;\n\t\t&lt;p&gt;Linear Gradient - Top to bottom right&lt;\/p&gt;\n\t\t&lt;div id=d3&gt;&lt;\/div&gt;&lt;br&gt;&lt;br&gt;\n\t&lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Output:<\/strong><\/p>\n\n\n\n\n\t\n\t\t<style>\n\t\t#d3{\n\t\theight:100px;\n                width:100px;\n\t\tbackground-image:linear-gradient(to bottom right,pink,red);\n\t\t}\n\t\t<\/style>\n\t\n\t\n\t\t<p>Linear Gradient \u2013 Top to bottom right<\/p>\n\t\t<div id=\"d3\"><\/div><br><br>\n\t\n\n\n\n\n<ul class=\"wp-block-list has-medium-font-size\">\n<li>You can also define an angle, if you don\u2019t want to use predefined directions (to bottom, to top, to right, to left, to bottom right, etc.). A value of 0deg is equivalent to \u201cto top\u201d. A value of 90deg is equivalent to \u201cto right\u201d. A value of 180deg is equivalent to \u201cto bottom\u201d.<\/li>\n<\/ul>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Example<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code has-medium-font-size\"><code>&lt;html&gt;\n\t&lt;head&gt;\n\t\t&lt;style&gt;\n\t\t\t#d4{\n\t\t\theight:100px;\n                        width:100px;\n\t\t\tbackground-image:linear-gradient(90deg,pink,red);\n                        }\n\t\t&lt;\/style&gt;\n\t&lt;\/head&gt;\n\t&lt;body&gt;\n\t\t&lt;p&gt;Linear Gradient 90 Degree - left to right&lt;\/p&gt;\n\t\t&lt;div id=d4&gt;&lt;\/div&gt;&lt;br&gt;&lt;br&gt;\n\t&lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Output:<\/strong><\/p>\n\n\n\n\n\t\n\t\t<style>\n\t\t\t#d4{\n\t\t\theight:100px;\n                        width:100px;\n\t\t\tbackground-image:linear-gradient(90deg,pink,red);\n                        }\n\t\t<\/style>\n\t\n\t\n\t\t<p>Linear Gradient 90 Degree \u2013 left to right<\/p>\n\t\t<div id=\"d4\"><\/div><br><br>\n\t\n\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"has-medium-font-size\"><strong>Multi-color Gradient<\/strong><\/li>\n\n\n\n<li class=\"has-medium-font-size\">You can also use more than two colors with specified directions for transition effect. Let us check an example<\/li>\n<\/ul>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Example <\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code has-medium-font-size\"><code>&lt;html&gt;\n\t&lt;head&gt;\n\t\t&lt;style&gt;\n\t\t#d5{\n\t\theight:100px;\n                width:100px;\n\t\tbackground-image:linear-gradient(orange,pink,purple,red);\n\t\t}\n\t\t#d6{\n\t\theight:100px;\n                width:100px;\n\t\tbackground-image:linear-gradient(to right,orange,pink,purple);\n\t\t}\n\t\t&lt;\/style&gt;\n\t&lt;\/head&gt;\n\t&lt;body&gt;\n\t\t&lt;p&gt;Linear Gradient - Multi color&lt;\/p&gt;\n\t\t&lt;div id=d5&gt;&lt;\/div&gt;&lt;br&gt;&lt;br&gt;\n\t\t&lt;div id=d6&gt;&lt;\/div&gt;&lt;br&gt;&lt;br&gt;\n\t&lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Output:<\/strong><\/p>\n\n\n\n\n\t\n\t\t<style>\n\t\t#d5{\n\t\theight:100px;\n                width:100px;\n\t\tbackground-image:linear-gradient(orange,pink,purple,red);\n\t\t}\n\t\t#d6{\n\t\theight:100px;\n                width:100px;\n\t\tbackground-image:linear-gradient(to right,orange,pink,purple);\n\t\t}\n\t\t<\/style>\n\t\n\t\n\t\t<p>Linear Gradient \u2013 Multi color<\/p>\n\t\t<div id=\"d5\"><\/div><br><br>\n\t\t<div id=\"d6\"><\/div><br><br>\n\t\n\n\n\n\n<ul class=\"wp-block-list has-medium-font-size\">\n<li>You can use transparency in transition effect. For that rgba() is used to define colors &amp; transparency. Transparency value ranges from 0(full transparent) to 1(no transparent\/opaque).<\/li>\n<\/ul>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Example<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code has-medium-font-size\"><code>&lt;html&gt;\n\t&lt;head&gt;\n\t\t&lt;style&gt;\n\t\t#d7{\n\t\theight:100px;\n                width:100px;\n\t\tbackground-image:linear-gradient(to right,rgba(0,255,0,0.5),rgba(0,0,255,1));\n\t\t}\n\t\t&lt;\/style&gt;\n\t&lt;\/head&gt;\n\t&lt;body&gt;\n\t\t&lt;p&gt;Linear Gradient - Transparency Effect&lt;\/p&gt;\n\t\t&lt;div id=d7&gt;&lt;\/div&gt;&lt;br&gt;&lt;br&gt;\n\t&lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Output:<\/strong><\/p>\n\n\n\n\n\t\n\t\t<style>\n\t\t#d7{\n\t\theight:100px;\n                width:100px;\n\t\tbackground-image:linear-gradient(to right,rgba(0,255,0,0.5),rgba(0,0,255,1));\n\t\t}\n\t\t<\/style>\n\t\n\t\n\t\t<p>Linear Gradient \u2013 Transparency Effect<\/p>\n\t\t<div id=\"d7\"><\/div><br><br>\n\t\n\n\n\n\n<p class=\"has-medium-font-size\"><strong>Repeating Linear Gradient :<\/strong> repeating-linear-gradient() is used to repeat linear gradient<\/p>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Example<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code has-medium-font-size\"><code>&lt;html&gt;\n\t&lt;head&gt;\n\t\t&lt;style&gt;\n\t\t#d8{\n\t\theight:100px;\n                width:100px;\n\t\tbackground-image: repeating-linear-gradient(red,yellow 10%,green 30%);\n\t\t}\n\t\t&lt;\/style&gt;\n\t&lt;\/head&gt;\n\t&lt;body&gt;\n\t\t&lt;p&gt;Repeating Linear Gradient&lt;\/p&gt;\n\t\t&lt;div id=d8&gt;&lt;\/div&gt;&lt;br&gt;&lt;br&gt;\n\t&lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Output:<\/strong><\/p>\n\n\n\n\n\t\n\t\t<style>\n\t\t#d8{\n\t\theight:100px;\n                width:100px;\n\t\tbackground-image: repeating-linear-gradient(red,yellow 10%,green 30%);\n\t\t}\n\t\t<\/style>\n\t\n\t\n\t\t<p>Repeating Linear Gradient<\/p>\n\t\t<div id=\"d8\"><\/div><br><br>\n\t\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"radial-gradient\"><span class=\"ez-toc-section\" id=\"Radial_Gradient\"><\/span>Radial Gradient<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<ul class=\"wp-block-list has-medium-font-size\">\n<li>A radial gradient is defined by its center. Two colors must be defined to do radial gradient effect.<\/li>\n\n\n\n<li><strong>Syntax : <\/strong>background-image: radial-gradient(shape, start-color, \u2026, last-color);<\/li>\n\n\n\n<li>Shape may be either circle or ellipse(default).<\/li>\n<\/ul>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Example<\/strong> <\/p>\n\n\n\n<pre class=\"wp-block-code has-medium-font-size\"><code>&lt;html&gt;\n\t&lt;head&gt;\n\t\t&lt;style&gt;\n\t\t\t#d9{\n\t\t\theight:100px;\n\t\t\twidth:200px;\n\t\t\tbackground-image:radial-gradient(red,purple,pink);\n\t\t\t}\n\t\t\t#d10{\n\t\t\theight:100px;\n\t\t\twidth:200px;\n\t\t\tbackground-image:radial-gradient(circle,purple,blue,green);\n\t\t\t}\n\t\t&lt;\/style&gt;\n\t&lt;\/head&gt;\n\t&lt;body&gt;\n\t\t&lt;p&gt;Radial Gradient Ellipse (Default Shape)&lt;\/p&gt;\n\t\t&lt;div id=d9&gt;&lt;\/div&gt;&lt;br&gt;&lt;br&gt;\n\n                &lt;p&gt;Radial Gradient Circle&lt;\/p&gt;\n\t\t&lt;div id=d10&gt;&lt;\/div&gt;&lt;br&gt;&lt;br&gt;\n\t&lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Output:<\/strong><\/p>\n\n\n\n\n\t\n\t\t<style>\n\t\t\t#d9{\n\t\t\theight:100px;\n\t\t\twidth:200px;\n\t\t\tbackground-image:radial-gradient(red,purple,pink);\n\t\t\t}\n\t\t\t#d10{\n\t\t\theight:100px;\n\t\t\twidth:200px;\n\t\t\tbackground-image:radial-gradient(circle,purple,blue,green);\n\t\t\t}\n\t\t<\/style>\n\t\n\t\n\t\t<p>Radial Gradient Ellipse (Default Shape)<\/p>\n\t\t<div id=\"d9\"><\/div><br><br>\n\n                <p>Radial Gradient Circle<\/p>\n\t\t<div id=\"d10\"><\/div><br><br>\n\t\n\n\n\n\n<ul class=\"wp-block-list has-medium-font-size\">\n<li><strong>Repeating a radial-gradient<\/strong> : The repeating-radial-gradient() function is used to repeat radial gradients<\/li>\n<\/ul>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Example<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code has-medium-font-size\"><code>&lt;html&gt;\n\t&lt;head&gt;\n\t\t&lt;style&gt;\n\t\t\t#d11{\n\t\t\theight:200px;\n\t\t\twidth:200px;\n\t\t\tbackground-image:repeating-radial-gradient(pink,purple 20%);\n\t\t\t}\n\t\t&lt;\/style&gt;\n\t&lt;\/head&gt;\n\t&lt;body&gt;\n\t\t&lt;p&gt;Repeating Radial Gradient&lt;\/p&gt;\n\t\t&lt;div id=d11&gt;&lt;\/div&gt;&lt;br&gt;&lt;br&gt;\n\t&lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Output:<\/strong><\/p>\n\n\n\n\n\t\n\t\t<style>\n\t\t\t#d11{\n\t\t\theight:200px;\n\t\t\twidth:200px;\n\t\t\tbackground-image:repeating-radial-gradient(pink,purple 20%);\n\t\t\t}\n\t\t<\/style>\n\t\n\t\n\t\t<p>Repeating Radial Gradient<\/p>\n\t\t<div id=\"d11\"><\/div><br><br>\n\t\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"conic-gradients\"><span class=\"ez-toc-section\" id=\"Conic_Gradients\"><\/span>Conic Gradients<span class=\"ez-toc-section-end\"><\/span><\/h2>\n\n\n\n<ul class=\"wp-block-list has-medium-font-size\">\n<li>A conic gradient is a gradient with color transitions rotated around a center point. To create a conic gradient you have to define at least two colors.<\/li>\n\n\n\n<li><strong>Syntax :<\/strong> background-image: conic-gradient([from<em>\u00a0<\/em>angle] [at\u00a0position,]\u00a0<em>color\u00a0<\/em>[degree]<em>, color\u00a0<\/em>[degree]<em>, \u2026<\/em>);<\/li>\n\n\n\n<li>0deg is a default angle and\u00a0center is default position. If no\u00a0degree\u00a0is specified, the colors will be spread equally around the center point.<\/li>\n\n\n\n<li>Lest us check and example includes <strong>Conic Gradient: Three Colors<\/strong>, <strong>Five Colors, Three colors with Degree<\/strong><\/li>\n<\/ul>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Example<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code has-medium-font-size\"><code>&lt;html&gt;\n\t&lt;head&gt;\n\t\t&lt;style&gt;\n\t\t\t#d12{\n\t\t\theight:200px;\n\t\t\twidth:200px;\n\t\t\tbackground-image:conic-gradient(pink,purple,green);\n\t\t\t}\n\t\t\t#d13{\n\t\t\theight:200px;\n\t\t\twidth:500px;\n\t\t\tbackground-image:conic-gradient(red, yellow, green,purple,pink);\n\t\t\t}\n\t\t\t#d14{\n\t\t\theight:200px;\n\t\t\twidth:500px;\n\t\t\tbackground-image:conic-gradient(green 45deg,purple 90deg,pink 180deg);\n\t\t\t}\n\t\t&lt;\/style&gt;\n\t&lt;\/head&gt;\n\t&lt;body&gt;\n\t\t&lt;p&gt;Conic Gradient three colors&lt;\/p&gt;\n\t\t&lt;div id=d12&gt;&lt;\/div&gt;&lt;br&gt;&lt;br&gt;\n\t\t&lt;p&gt;Conic Gradient five colors&lt;\/p&gt;\n\t\t&lt;div id=d13&gt;&lt;\/div&gt;&lt;br&gt;&lt;br&gt;\n\t\t&lt;p&gt;Conic Gradient three colors with degree&lt;\/p&gt;\n\t\t&lt;div id=d14&gt;&lt;\/div&gt;&lt;br&gt;&lt;br&gt;\n\t&lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Output:<\/strong><\/p>\n\n\n\n\n\t\n\t\t<style>\n\t\t\t#d12{\n\t\t\theight:200px;\n\t\t\twidth:200px;\n\t\t\tbackground-image:conic-gradient(pink,purple,green);\n\t\t\t}\n\t\t\t#d13{\n\t\t\theight:200px;\n\t\t\twidth:200px;\n\t\t\tbackground-image:conic-gradient(red, yellow, green,purple,pink);\n\t\t\t}\n\t\t\t#d14{\n\t\t\theight:200px;\n\t\t\twidth:200px;\n\t\t\tbackground-image:conic-gradient(green 45deg,purple 90deg,pink 180deg);\n\t\t\t}\n\t\t<\/style>\n\t\n\t\n\t\t<p>Conic Gradient three colors<\/p>\n\t\t<div id=\"d12\"><\/div><br><br>\n\t\t<p>Conic Gradient five colors<\/p>\n\t\t<div id=\"d13\"><\/div><br><br>\n\t\t<p>Conic Gradient three colors with degree<\/p>\n\t\t<div id=\"d14\"><\/div><br><br>\n\t\n\n\n\n\n<h1 class=\"wp-block-heading\" id=\"box-shadow-property\"><span class=\"ez-toc-section\" id=\"CSS3_Box-shadow_Property\"><\/span>CSS3 Box-shadow\u00a0Property<span class=\"ez-toc-section-end\"><\/span><\/h1>\n\n\n\n<ul class=\"wp-block-list has-medium-font-size\">\n<li>It attaches one or more shadows to an element.<\/li>\n\n\n\n<li><strong>Syntax<\/strong> : box-shadow: none|h-offset v-offset blur spread color\u00a0|inset|initial|inherit;<\/li>\n<\/ul>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Example<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code has-medium-font-size\"><code>&lt;!DOCTYPE html&gt;\n&lt;html&gt;\n\t&lt;head&gt;\n\t\t&lt;style&gt; \n\t\t\t#d15{\n\t\t\t\tborder: 1px solid;\n\t\t\t\tpadding: 10px;\n\t\t\t\tbox-shadow: 5px 10px;\n\t\t\t}\n\t\t\t#d16{\n\t\t\t\tborder: 1px solid;\n\t\t\t\tpadding: 10px;\n\t\t\t\tbox-shadow: 5px 10px red;\n\t\t\t}\n\t\t&lt;\/style&gt;\n\t&lt;\/head&gt;\n\t&lt;body&gt;\n\t\t&lt;p&gt;The box-shadow property of an element - Example 1&lt;\/p&gt;&lt;br&gt;\n\t\t&lt;div id=\"d15\"&gt;\n\t\t\t&lt;p&gt;Hello Everyone&lt;\/p&gt;\n\t\t&lt;\/div&gt;&lt;br&gt;\n\t\t&lt;div id=\"d16\"&gt;\n\t\t\t&lt;p&gt;Hello Everyone&lt;\/p&gt;\n\t\t&lt;\/div&gt;&lt;br&gt;\n\t&lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Output:<\/strong><\/p>\n\n\n\n\n\n\t\n\t\t<style> \n\t\t\t#d15{\n\t\t\t\tborder: 1px solid;\n\t\t\t\tpadding: 10px;\n\t\t\t\tbox-shadow: 5px 10px;\n\t\t\t}\n\t\t\t#d16{\n\t\t\t\tborder: 1px solid;\n\t\t\t\tpadding: 10px;\n\t\t\t\tbox-shadow: 5px 10px red;\n\t\t\t}\n\t\t<\/style>\n\t\n\t\n\t\t<p>The box-shadow property of an element \u2013 Example 1<\/p><br>\n\t\t<div id=\"d15\">\n\t\t\t<p>Hello Everyone<\/p>\n\t\t<\/div><br>\n\t\t<div id=\"d16\">\n\t\t\t<p>Hello Everyone<\/p>\n\t\t<\/div><br>\n\t\n\n\n\n\n<ul class=\"wp-block-list has-medium-font-size\">\n<li><strong>Property Values<\/strong>:<\/li>\n\n\n\n<li><strong>None<\/strong> : No Shadow is displayed. This is default value.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code has-medium-font-size\"><code>        &lt;head&gt;\n\t\t&lt;style&gt; \n\t\t\t#d17{\n\t\t\t\tborder: 1px solid;\n\t\t\t\tpadding: 10px;\n\t\t\t\tbox-shadow: None\n\t\t\t}\n\t\t&lt;\/style&gt;\n\t&lt;\/head&gt;\n\t&lt;body&gt;\n\t\t&lt;p&gt;The box-shadow property Example - 2&lt;\/p&gt;&lt;br&gt;\n\t\t&lt;div id=\"d17\"&gt;\n\t\t\t&lt;p&gt;Hello World&lt;\/p&gt;\n\t\t&lt;\/div&gt;\n\t&lt;\/body&gt;<\/code><\/pre>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Output:<\/strong><\/p>\n\n\n\n\n\t\t<style> \n\t\t\t#d17{\n\t\t\t\tborder: 1px solid;\n\t\t\t\tpadding: 10px;\n\t\t\t\tbox-shadow: None\n\t\t\t}\n\t\t<\/style>\n\t\n\t\n\t\t<p>The box-shadow property Example \u2013 2<\/p><br>\n\t\t<div id=\"d17\">\n\t\t\t<p>Hello World<\/p>\n\t\t<\/div><br>\n\t\n\n\n\n<ul class=\"wp-block-list has-medium-font-size\">\n<li><strong>h-offset<\/strong> : This is required. It indicates horizontal offset of the shadow. A positive value puts the shadow on the right side of the box, a negative value puts the shadow on the left side of the box.<\/li>\n\n\n\n<li><strong>v-offset <\/strong>: This is required. It indicates vertical offset of the shadow. A positive value puts the shadow below the box, a negative value puts the shadow above the box.<\/li>\n<\/ul>\n\n\n\n<pre class=\"wp-block-code has-medium-font-size\"><code>&lt;head&gt;\n\t\t&lt;style&gt; \n\t\t\t#d18{\n\t\t\t\tborder: 1px solid;\n\t\t\t\tpadding: 10px;\n\t\t\t\tbox-shadow:10px 10px red;\n\t\t\t}\n\n                        #d19{\n\t\t\t\tborder: 1px solid;\n\t\t\t\tpadding: 10px;\n\t\t\t\tbox-shadow:-10px -10px red;\n\t\t\t}\n\t\t&lt;\/style&gt;\n\t&lt;\/head&gt;\n\t&lt;body&gt;\n\t&lt;p&gt;The box-shadow Property : Positive h-offset &amp; v-offset&lt;\/p&gt;&lt;br&gt;\n\t\t&lt;div id=\"d18\"&gt;\n\t\t\t&lt;p&gt;Hello World&lt;\/p&gt;\n\t\t&lt;\/div&gt;&lt;br&gt;&lt;br&gt;\n\n        &lt;p&gt;The box-shadow Property : Negative h-offset &amp; v-offset&lt;\/p&gt;&lt;br&gt;\n\t\t&lt;div id=\"d19\"&gt;\n\t\t\t&lt;p&gt;Hello World&lt;\/p&gt;\n\t\t&lt;\/div&gt;&lt;br&gt;&lt;br&gt;\n\t&lt;\/body&gt;\n&lt;\/html&gt;<\/code><\/pre>\n\n\n\n<p class=\"has-medium-font-size\"><strong>Output:<\/strong><\/p>\n\n\n\n\n\t\t<style> \n\t\t\t#d18{\n\t\t\t\tborder: 1px solid;\n\t\t\t\tpadding: 10px;\n\t\t\t\tbox-shadow:10px 10px red;\n\t\t\t}\n\n                        #d19{\n\t\t\t\tborder: 1px solid;\n\t\t\t\tpadding: 10px;\n\t\t\t\tbox-shadow:-10px -10px red;\n\t\t\t}\n\t\t<\/style>\n\t\n\t\n\t<p>The box-shadow Property : Positive h-offset &amp; v-offset<\/p><br>\n\t\t<div id=\"d18\">\n\t\t\t<p>Hello World<\/p>\n\t\t<\/div><br><br>\n\n        <p>The box-shadow Property : Negative h-offset &amp; v-offset<\/p><br>\n\t\t<div id=\"d19\">\n\t\t\t<p>Hello World<\/p>\n\t\t<\/div><br><br>\n\t\n<\/body>","protected":false},"excerpt":{"rendered":"<p>CSS3 Border Property Example: Output: Border with radius for each side Example Output: Border Radius Short hand property for all side CSS3 Background Property Example Example Example Output: Hello World Hello World Hello World Hello World CSS3 Gradient Property Linear Gradients Syntax : background-image: linear-gradient(direction,\u00a0color1,\u00a0color2, \u2026); Example : This is default direction : top to [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"zakra_page_container_layout":"customizer","zakra_page_sidebar_layout":"customizer","zakra_remove_content_margin":false,"zakra_sidebar":"customizer","zakra_transparent_header":"customizer","zakra_logo":0,"zakra_main_header_style":"default","zakra_menu_item_color":"","zakra_menu_item_hover_color":"","zakra_menu_item_active_color":"","zakra_menu_active_style":"","zakra_page_header":true,"om_disable_all_campaigns":false,"footnotes":""},"class_list":["post-1791","page","type-page","status-publish","hentry"],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/swatilathia.com\/index.php?rest_route=\/wp\/v2\/pages\/1791","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/swatilathia.com\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/swatilathia.com\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/swatilathia.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/swatilathia.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1791"}],"version-history":[{"count":5,"href":"https:\/\/swatilathia.com\/index.php?rest_route=\/wp\/v2\/pages\/1791\/revisions"}],"predecessor-version":[{"id":6255,"href":"https:\/\/swatilathia.com\/index.php?rest_route=\/wp\/v2\/pages\/1791\/revisions\/6255"}],"wp:attachment":[{"href":"https:\/\/swatilathia.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1791"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}