{"id":78483,"date":"2025-05-24T11:45:08","date_gmt":"2025-05-24T11:45:08","guid":{"rendered":"https:\/\/mailinvest.blog\/index.php\/2025\/05\/24\/7-css-properties-youve-never-heard-of-and-how-to-use-them\/"},"modified":"2025-05-24T11:46:32","modified_gmt":"2025-05-24T11:46:32","slug":"7-css-properties-youve-never-heard-of-and-how-to-use-them","status":"publish","type":"post","link":"https:\/\/mailinvest.blog\/index.php\/2025\/05\/24\/7-css-properties-youve-never-heard-of-and-how-to-use-them\/","title":{"rendered":"7 CSS Properties You\u2019ve Never Heard Of (and How to Use Them)"},"content":{"rendered":"<p> <a href=\"https:\/\/go.fiverr.com\/visit\/?bta=1052423&nci=17043\" Target=\"_Top\"><img loading=\"lazy\" decoding=\"async\" border=\"0\" src=\"https:\/\/fiverr.ck-cdn.com\/tn\/serve\/?cid=40081059\"  width=\"601\" height=\"201\"><\/a>\n<\/p>\n<div>\n<p>Even if you happen to\u2019re an professional internet designer, there are many obscure CSS properties you\u2019re unlikely ever to make use of. In truth, with a whole lot of supported properties, there are components of CSS you\u2019ll in all probability by no means even find out about. Some price realizing regardless of being unusual.<\/p>\n<p>    <!-- No AdsNinja v10 Client! --><!-- No AdsNinja v10 Client! --><\/p>\n<p>Due to <a href=\"https:\/\/chromestatus.com\/metrics\/css\/popularity\" target=\"_blank\">Google\u2019s Platform Status report<\/a> you will discover out which properties are used the least, and possibly find out about a brand new, highly effective property whilst you\u2019re at it. I&#8217;ve put pulled out among the most fascinating. A few of these CSS properties are experimental, browser-specific, or in any other case not extensively applied. However all of the properties featured listed below are well-supported by present browsers; they\u2019re simply not often used.<\/p>\n<p>    <!-- No AdsNinja v10 Client! --><\/p>\n<h2 id=\"empty-cells\">\n            <span class=\"item-num\">1 <\/span><br \/>\n        <span><br \/>\n                            empty-cells<br \/>\n                    <\/span><br \/>\n       <\/h2>\n<p>This property is particular to tables, and you should use it at the side of border-collapse: separate. It controls whether or not cells with no seen content material present their background and borders.<\/p>\n<p>Right here\u2019s an instance desk, with one empty cell and one other that spans the cell under it:<\/p>\n<pre>\n        <code class=\"hljs html\"><span class=\"hljs-tag\">desk<\/span>&gt;<br\/>\u00a0\u00a0\u00a0\u00a0<span class=\"hljs-tag\">tr<\/span>&gt;<br\/>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0<span class=\"hljs-tag\">td<\/span>&gt;Apples<span class=\"hljs-tag\"><span class=\"hljs-name\">td<\/span>&gt;<\/span><br\/>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0<span class=\"hljs-tag\">td<\/span>&gt;4<span class=\"hljs-tag\"><span class=\"hljs-name\">td<\/span>&gt;<\/span><br\/>\u00a0\u00a0\u00a0\u00a0<span class=\"hljs-tag\"><span class=\"hljs-name\">tr<\/span>&gt;<\/span><br\/>\u00a0\u00a0\u00a0\u00a0<span class=\"hljs-tag\">tr<\/span>&gt;<br\/>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0<span class=\"hljs-tag\">td<\/span>&gt;Grapes<span class=\"hljs-tag\"><span class=\"hljs-name\">td<\/span>&gt;<\/span><br\/>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0<span class=\"hljs-tag\">td<\/span>&gt;<span class=\"hljs-tag\"><span class=\"hljs-name\">td<\/span>&gt;<\/span><br\/>\u00a0\u00a0\u00a0\u00a0<span class=\"hljs-tag\"><span class=\"hljs-name\">tr<\/span>&gt;<\/span><br\/>\u00a0\u00a0\u00a0\u00a0<span class=\"hljs-tag\">tr<\/span>&gt;<br\/>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0<span class=\"hljs-tag\">td<\/span>\u00a0<span class=\"hljs-attr\">rowspan<\/span>=<span class=\"hljs-string\">\"2\"<\/span>&gt;Bananas<span class=\"hljs-tag\"><span class=\"hljs-name\">td<\/span>&gt;<\/span><br\/>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0<span class=\"hljs-tag\">td<\/span>&gt;4<span class=\"hljs-tag\"><span class=\"hljs-name\">td<\/span>&gt;<\/span><br\/>\u00a0\u00a0\u00a0\u00a0<span class=\"hljs-tag\"><span class=\"hljs-name\">tr<\/span>&gt;<\/span><br\/>\u00a0\u00a0\u00a0\u00a0<span class=\"hljs-tag\">tr<\/span>&gt;<br\/>\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0\u00a0<span class=\"hljs-tag\">td<\/span>&gt;9<span class=\"hljs-tag\"><span class=\"hljs-name\">td<\/span>&gt;<\/span><br\/>\u00a0\u00a0\u00a0\u00a0<span class=\"hljs-tag\"><span class=\"hljs-name\">tr<\/span>&gt;<\/span><br\/><span class=\"hljs-tag\"><span class=\"hljs-name\">desk<\/span>&gt;<\/span><br\/><\/code>\n    <\/pre>\n<p>As a result of the empty cell has no content material in any respect, it may be managed with the <strong>empty-cells<\/strong> property:<\/p>\n<pre>\n        <code class=\"hljs xml\">td {<br\/>\u00a0\u00a0\u00a0\u00a0<span class=\"hljs-keyword\">empty<\/span>-cells: conceal;<br\/>}<br\/><\/code>\n    <\/pre>\n<p>Now, any desk cells with out seen content material will cease displaying any background coloration or border:<\/p>\n<div class=\"body-img landscape \">\n<div class=\"responsive-img  image-expandable  img-article-item\" style=\"padding-bottom:33.269598470363%\" data-img-url=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-empty-cells.png\" data-modal-id=\"single-image-modal\" data-modal-container-id=\"single-image-modal-container\" data-img-caption=\"&quot;&quot;\">\n<figure>\n        <picture><source media=\"(min-width: 1024px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-empty-cells.png?q=70&amp;fit=crop&amp;w=825&amp;dpr=1\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-empty-cells.png?q=70&amp;fit=crop&amp;w=825&amp;dpr=1\"\/><source media=\"(min-width: 768px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-empty-cells.png?q=70&amp;fit=crop&amp;w=825&amp;dpr=1\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-empty-cells.png?q=70&amp;fit=crop&amp;w=825&amp;dpr=1\"\/><source media=\"(min-width: 481px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-empty-cells.png?q=70&amp;fit=crop&amp;w=800&amp;dpr=1\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-empty-cells.png?q=70&amp;fit=crop&amp;w=800&amp;dpr=1\"\/><source media=\"(min-width: 0px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-empty-cells.png?q=49&amp;fit=crop&amp;w=500&amp;dpr=2\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-empty-cells.png?q=49&amp;fit=crop&amp;w=500&amp;dpr=2\"\/><img width=\"1046\" height=\"348\" loading=\"lazy\" decoding=\"async\" alt=\"Three tables, including one with an empty cell that shows no background or border.\" data-img-url=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-empty-cells.png\" src=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-empty-cells.png\" style=\"display:block;height:auto;max-width:100%;\"\/>\n    <\/picture>\n<\/figure><\/div>\n<\/p><\/div>\n<p> This impact will be notably helpful with bigger tables, serving to to obviously determine lacking or uncommon information. Observe {that a} desk with collapsing borders will proceed to point out each borders and background, even when empty cells are hidden utilizing this property.<\/p>\n<h2 id=\"text-underline-position\">\n            <span class=\"item-num\">2 <\/span><br \/>\n        <span><br \/>\n                            text-underline-position<br \/>\n                    <\/span><br \/>\n       <\/h2>\n<p>Greater than 4 in 5 web sites use the text-decoration property, usually to manage how hyperlinks are underlined. However the underline worth for this property will be accompanied by a less-often-used property, <strong>text-underline-position<\/strong>:<\/p>\n<pre>\n        <code class=\"hljs css\"><span class=\"hljs-selector-tag\">a<\/span> {<br\/>\u00a0\u00a0\u00a0\u00a0<span class=\"hljs-selector-tag\">text-decoration<\/span>: <span class=\"hljs-selector-tag\">underline<\/span>;<br\/>\u00a0\u00a0\u00a0\u00a0<span class=\"hljs-selector-tag\">text-underline-position<\/span>: <span class=\"hljs-selector-tag\">beneath<\/span>;<br\/>}<\/code>\n    <\/pre>\n<p>With an \u201cbeneath\u201d worth, the underline will push down in order that it doesn\u2019t intersect with the descenders in letters like j and g. This may enhance readability, particularly with shorter line-height settings.<\/p>\n<div class=\"body-img landscape \">\n<div class=\"responsive-img  image-expandable  img-article-item\" style=\"padding-bottom:37.706855791962%\" data-img-url=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-underline-position.png\" data-modal-id=\"single-image-modal\" data-modal-container-id=\"single-image-modal-container\" data-img-caption=\"&quot;&quot;\">\n<figure>\n        <picture><source media=\"(min-width: 1024px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-underline-position.png?q=70&amp;fit=crop&amp;w=825&amp;dpr=1\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-underline-position.png?q=70&amp;fit=crop&amp;w=825&amp;dpr=1\"\/><source media=\"(min-width: 768px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-underline-position.png?q=70&amp;fit=crop&amp;w=825&amp;dpr=1\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-underline-position.png?q=70&amp;fit=crop&amp;w=825&amp;dpr=1\"\/><source media=\"(min-width: 481px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-underline-position.png?q=70&amp;fit=crop&amp;w=800&amp;dpr=1\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-underline-position.png?q=70&amp;fit=crop&amp;w=800&amp;dpr=1\"\/><source media=\"(min-width: 0px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-underline-position.png?q=70&amp;fit=crop&amp;w=500&amp;dpr=1\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-underline-position.png?q=70&amp;fit=crop&amp;w=500&amp;dpr=1\"\/><img width=\"846\" height=\"319\" loading=\"lazy\" decoding=\"async\" alt=\"Four paragraphs showing links with different underline styles.\" data-img-url=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-underline-position.png\" src=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-underline-position.png\" style=\"display:block;height:auto;max-width:100%;\"\/>\n    <\/picture>\n<\/figure><\/div>\n<\/p><\/div>\n<p> Earlier than this property, a typical workaround was to emulate the underline with a backside border. That strategy has undesirable side-effects, nonetheless, and will be awkward to handle, so it\u2019s lucky that you just not must resort to it.<\/p>\n<h2 id=\"column-span\">\n            <span class=\"item-num\">3 <\/span><br \/>\n        <span><br \/>\n                            column-span<br \/>\n                    <\/span><br \/>\n       <\/h2>\n<p>Columns are a reasonably little-used CSS property, that includes on slightly below 3% of all internet pages. Lengthy mimicked utilizing workarounds like show: float, columns have additionally suffered from cross-browser inconsistencies and a scarcity of clear understanding; they\u2019re not for general-purpose format, folks!<\/p>\n<p>Nonetheless, when used to recreate conventional newspaper-style columns, this property can add curiosity to text-heavy designs and enhance readability. They\u2019re notably helpful once you need to use the complete width of bigger screens, comparable to these used for desktop shows.<\/p>\n<div class=\"display-card  article article-card small  no-badge  active-content                      \" data-include-community-rating=\"false\" id=\"1b2f-4d8b-85ab16c454da\" data-nosnippet=\"\">\n<p>\t\t<a class=\"dc-img-link\" href=\"https:\/\/www.howtogeek.com\/these-fun-games-will-teach-you-modern-css\/\"><\/p>\n<div class=\"w-img \">\n<div class=\"body-img landscape \">\n<div class=\"responsive-img  img-featured-4-pin-single-size-featured-secondary\" style=\"padding-bottom:56.25%\" data-img-url=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/03\/illustration-of-a-laptop-with-the-css-logo-a-grid-in-the-behind-and-some-icons-around-it.png\" data-modal-id=\"single-image-modal\" data-modal-container-id=\"single-image-modal-container\" data-img-caption=\"&quot;&quot;\">\n<figure>\n        <picture><source media=\"(min-width: 1024px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/03\/illustration-of-a-laptop-with-the-css-logo-a-grid-in-the-behind-and-some-icons-around-it.png?q=49&amp;fit=crop&amp;w=422&amp;h=268&amp;dpr=2\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/03\/illustration-of-a-laptop-with-the-css-logo-a-grid-in-the-behind-and-some-icons-around-it.png?q=49&amp;fit=crop&amp;w=422&amp;h=268&amp;dpr=2\"\/><source media=\"(min-width: 768px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/03\/illustration-of-a-laptop-with-the-css-logo-a-grid-in-the-behind-and-some-icons-around-it.png?q=49&amp;fit=crop&amp;w=310&amp;h=220&amp;dpr=2\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/03\/illustration-of-a-laptop-with-the-css-logo-a-grid-in-the-behind-and-some-icons-around-it.png?q=49&amp;fit=crop&amp;w=310&amp;h=220&amp;dpr=2\"\/><source media=\"(min-width: 481px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/03\/illustration-of-a-laptop-with-the-css-logo-a-grid-in-the-behind-and-some-icons-around-it.png?q=49&amp;fit=crop&amp;w=720&amp;h=400&amp;dpr=2\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/03\/illustration-of-a-laptop-with-the-css-logo-a-grid-in-the-behind-and-some-icons-around-it.png?q=49&amp;fit=crop&amp;w=720&amp;h=400&amp;dpr=2\"\/><source media=\"(min-width: 0px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/03\/illustration-of-a-laptop-with-the-css-logo-a-grid-in-the-behind-and-some-icons-around-it.png?q=49&amp;fit=crop&amp;w=432&amp;h=260&amp;dpr=2\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/03\/illustration-of-a-laptop-with-the-css-logo-a-grid-in-the-behind-and-some-icons-around-it.png?q=49&amp;fit=crop&amp;w=432&amp;h=260&amp;dpr=2\"\/><img width=\"1920\" height=\"1080\" loading=\"lazy\" decoding=\"async\" alt=\"Illustration of a laptop with the CSS logo, a grid in the behind, and some icons around it.\" data-img-url=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/03\/illustration-of-a-laptop-with-the-css-logo-a-grid-in-the-behind-and-some-icons-around-it.png\" src=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/03\/illustration-of-a-laptop-with-the-css-logo-a-grid-in-the-behind-and-some-icons-around-it.png\" style=\"display:block;height:auto;max-width:100%;\"\/>\n    <\/picture>\n<\/figure><\/div>\n<\/p><\/div>\n<\/p><\/div>\n<p>\t\t<\/a><\/p>\n<p>                    <span data-field=\"label\" class=\"article-card-label\">Associated<\/span><\/p>\n<div class=\"w-display-card-content regular article-block\">\n<h5 class=\"display-card-title \">\n<p>\t\t<a href=\"https:\/\/www.howtogeek.com\/these-fun-games-will-teach-you-modern-css\/\" title=\"These 10 Fun Games Will Teach You Modern CSS\" target=\"_blank\"><br \/>\n\t\t\tThese 10 Fun Games Will Teach You Modern CSS<br \/>\n\t\t<\/a><br \/>\n\t<\/h5>\n<p class=\"display-card-excerpt\">Difficult. Strategic. Satisfying.<\/p>\n<\/p><\/div>\n<\/p><\/div>\n<p>The <strong>column-span<\/strong> property addresses the necessity to get away from column format in the course of a block, inflicting a component to span throughout columns, successfully ignoring them:<\/p>\n<div class=\"body-img landscape \">\n<div class=\"responsive-img  image-expandable  img-article-item\" style=\"padding-bottom:74.586288416076%\" data-img-url=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-column-span.png\" data-modal-id=\"single-image-modal\" data-modal-container-id=\"single-image-modal-container\" data-img-caption=\"&quot;&quot;\">\n<figure>\n        <picture><source media=\"(min-width: 1024px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-column-span.png?q=70&amp;fit=crop&amp;w=825&amp;dpr=1\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-column-span.png?q=70&amp;fit=crop&amp;w=825&amp;dpr=1\"\/><source media=\"(min-width: 768px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-column-span.png?q=70&amp;fit=crop&amp;w=825&amp;dpr=1\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-column-span.png?q=70&amp;fit=crop&amp;w=825&amp;dpr=1\"\/><source media=\"(min-width: 481px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-column-span.png?q=70&amp;fit=crop&amp;w=800&amp;dpr=1\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-column-span.png?q=70&amp;fit=crop&amp;w=800&amp;dpr=1\"\/><source media=\"(min-width: 0px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-column-span.png?q=70&amp;fit=crop&amp;w=500&amp;dpr=1\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-column-span.png?q=70&amp;fit=crop&amp;w=500&amp;dpr=1\"\/><img width=\"846\" height=\"631\" loading=\"lazy\" decoding=\"async\" alt=\"Three columns of sample text interrupted by headings in the middle that span all columns.\" data-img-url=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-column-span.png\" src=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-column-span.png\" style=\"display:block;height:auto;max-width:100%;\"\/>\n    <\/picture>\n<\/figure><\/div>\n<\/p><\/div>\n<p> On this instance, spanning is simple:<\/p>\n<pre>\n        <code class=\"hljs css\"><span class=\"hljs-selector-tag\">h1<\/span>, <span class=\"hljs-selector-tag\">h2<\/span> { <span class=\"hljs-attribute\">column-span<\/span>: all }<br\/><\/code>\n    <\/pre>\n<p>This property is a straightforward one, with simply two vital values: none (the default) or all. The all worth signifies that a component ought to ignore columns and stretch throughout all which can be current. Not like the same HTML attribute for desk cells, colspan, there isn&#8217;t a assist for a numeric worth to span just a few columns; it\u2019s all or nothing.<\/p>\n<section class=\"emaki-custom-block emaki-custom-note\" data-nosnippet=\"\">\n<div class=\"emaki-custom note\" id=\"custom_block_26\">\n<div class=\"custom_block-content note\">\n<p>Curiously, the column-gap property is utilized by over 30% of internet pages, ten instances the quantity that use the columns property. It&#8217;s because column-gap has broadened [tk] to use to layouts past columns, like flexbox and grid.<\/p>\n<\/p><\/div>\n<\/p><\/div>\n<\/section>\n<h2 id=\"grid\">\n            <span class=\"item-num\">4 <\/span><br \/>\n        <span><br \/>\n                            grid<br \/>\n                    <\/span><br \/>\n       <\/h2>\n<p>The <strong>grid<\/strong> property is an fascinating case. Grid layouts at the moment are highly regarded typically, evidenced by grid-template-columns\u2019 use in 42% of pages. However the easy grid shorthand is deeply unpopular, utilized by lower than half a % of pages.<\/p>\n<p>Maybe it\u2019s as a result of grid is such an advanced shorthand, combining all grid properties in a single. Listed here are some instance declarations that this property accepts:<\/p>\n<pre>\n        <code class=\"hljs xml\">grid: <span class=\"hljs-string\">\"a\"<\/span>\u00a0<span class=\"hljs-number\">100<\/span>px <span class=\"hljs-string\">\"b\"<\/span>\u00a0<span class=\"hljs-number\">1<\/span>fr;<br\/>grid: minmax(400px, min-content) \/ repeat(auto-fill, 50px);<br\/>grid: 30% \/ auto-flow dense;<br\/>grid: auto-flow dense 40% \/ [line1] minmax(20em, max-content);<br\/><\/code>\n    <\/pre>\n<p>It\u2019s little marvel that designers favor particular person properties like grid-template-columns (42%), grid-column (23%), and grid-gap (19%) as an alternative. However, like all shorthand properties, grid can save time and complexity, and may make your CSS extra maintainable. Watch out, although: overuse may be complicated, so think about using long-form properties like grid-auto-flow for clarification, the place acceptable.<\/p>\n<div class=\"display-card  article article-card small  no-badge  active-content                      \" data-include-community-rating=\"false\" id=\"25d7-4f30-8171f9ddb191\" data-nosnippet=\"\">\n<p>\t\t<a class=\"dc-img-link\" href=\"https:\/\/www.howtogeek.com\/tips-for-getting-started-with-modern-css\/\"><\/p>\n<div class=\"w-img \">\n<div class=\"body-img landscape \">\n<div class=\"responsive-img  img-featured-4-pin-single-size-featured-secondary\" style=\"padding-bottom:66.666666666667%\" data-img-url=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2024\/08\/illustration-of-an-ide-with-multiple-lines-of-code-and-some-websites-in-the-background.jpg\" data-modal-id=\"single-image-modal\" data-modal-container-id=\"single-image-modal-container\" data-img-caption=\"&quot;&quot;\">\n<figure>\n        <picture><source media=\"(min-width: 1024px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2024\/08\/illustration-of-an-ide-with-multiple-lines-of-code-and-some-websites-in-the-background.jpg?q=49&amp;fit=crop&amp;w=422&amp;h=268&amp;dpr=2\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2024\/08\/illustration-of-an-ide-with-multiple-lines-of-code-and-some-websites-in-the-background.jpg?q=49&amp;fit=crop&amp;w=422&amp;h=268&amp;dpr=2\"\/><source media=\"(min-width: 768px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2024\/08\/illustration-of-an-ide-with-multiple-lines-of-code-and-some-websites-in-the-background.jpg?q=49&amp;fit=crop&amp;w=310&amp;h=220&amp;dpr=2\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2024\/08\/illustration-of-an-ide-with-multiple-lines-of-code-and-some-websites-in-the-background.jpg?q=49&amp;fit=crop&amp;w=310&amp;h=220&amp;dpr=2\"\/><source media=\"(min-width: 481px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2024\/08\/illustration-of-an-ide-with-multiple-lines-of-code-and-some-websites-in-the-background.jpg?q=49&amp;fit=crop&amp;w=720&amp;h=400&amp;dpr=2\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2024\/08\/illustration-of-an-ide-with-multiple-lines-of-code-and-some-websites-in-the-background.jpg?q=49&amp;fit=crop&amp;w=720&amp;h=400&amp;dpr=2\"\/><source media=\"(min-width: 0px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2024\/08\/illustration-of-an-ide-with-multiple-lines-of-code-and-some-websites-in-the-background.jpg?q=49&amp;fit=crop&amp;w=432&amp;h=260&amp;dpr=2\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2024\/08\/illustration-of-an-ide-with-multiple-lines-of-code-and-some-websites-in-the-background.jpg?q=49&amp;fit=crop&amp;w=432&amp;h=260&amp;dpr=2\"\/><img width=\"2400\" height=\"1600\" loading=\"lazy\" decoding=\"async\" alt=\"Illustration of an IDE with multiple lines of code and some websites in the background.\" data-img-url=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2024\/08\/illustration-of-an-ide-with-multiple-lines-of-code-and-some-websites-in-the-background.jpg\" src=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2024\/08\/illustration-of-an-ide-with-multiple-lines-of-code-and-some-websites-in-the-background.jpg\" style=\"display:block;height:auto;max-width:100%;\"\/>\n    <\/picture>\n<\/figure><\/div>\n<\/p><\/div>\n<\/p><\/div>\n<p>\t\t<\/a><\/p>\n<p>                    <span data-field=\"label\" class=\"article-card-label\">Associated<\/span><\/p>\n<div class=\"w-display-card-content regular article-block\">\n<h5 class=\"display-card-title \">\n<p>\t\t<a href=\"https:\/\/www.howtogeek.com\/tips-for-getting-started-with-modern-css\/\" title=\"11 Tips for Getting Started With Modern CSS\" target=\"_blank\"><br \/>\n\t\t\t11 Tips for Getting Started With Modern CSS<br \/>\n\t\t<\/a><br \/>\n\t<\/h5>\n<p class=\"display-card-excerpt\">Fashion suggestions that gained\u2019t exit of trend.<\/p>\n<\/p><\/div>\n<\/p><\/div>\n<h2 id=\"initial-letter\">\n            <span class=\"item-num\">5 <\/span><br \/>\n        <span><br \/>\n                            initial-letter<br \/>\n                    <\/span><br \/>\n       <\/h2>\n<p>A drop cap (dropped capital) refers to particular styling for the primary letter of a paragraph or block of textual content. You might even see this model in books or magazines, the place the preliminary letter is far bigger, heavier, and infrequently comes with ornate ornament or different model prospers.<\/p>\n<div class=\"display-card  article article-card small  no-badge  active-content                      \" data-include-community-rating=\"false\" id=\"1b69-45ac-a4e24b806dc5\" data-nosnippet=\"\">\n<p>\t\t<a class=\"dc-img-link\" href=\"https:\/\/www.howtogeek.com\/720411\/how-to-create-a-drop-cap-in-google-docs\/\"><\/p>\n<div class=\"w-img \">\n<div class=\"body-img landscape \">\n<div class=\"responsive-img  img-featured-4-pin-single-size-featured-secondary\" style=\"padding-bottom:46.25%\" data-img-url=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2021\/03\/google-docs-logo.jpg\" data-modal-id=\"single-image-modal\" data-modal-container-id=\"single-image-modal-container\" data-img-caption=\"&quot;&quot;\">\n<figure>\n        <picture><source media=\"(min-width: 1024px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2021\/03\/google-docs-logo.jpg?q=49&amp;fit=crop&amp;w=422&amp;h=268&amp;dpr=2\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2021\/03\/google-docs-logo.jpg?q=49&amp;fit=crop&amp;w=422&amp;h=268&amp;dpr=2\"\/><source media=\"(min-width: 768px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2021\/03\/google-docs-logo.jpg?q=49&amp;fit=crop&amp;w=310&amp;h=220&amp;dpr=2\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2021\/03\/google-docs-logo.jpg?q=49&amp;fit=crop&amp;w=310&amp;h=220&amp;dpr=2\"\/><source media=\"(min-width: 481px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2021\/03\/google-docs-logo.jpg?q=70&amp;fit=crop&amp;w=720&amp;h=400&amp;dpr=1\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2021\/03\/google-docs-logo.jpg?q=70&amp;fit=crop&amp;w=720&amp;h=400&amp;dpr=1\"\/><source media=\"(min-width: 0px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2021\/03\/google-docs-logo.jpg?q=49&amp;fit=crop&amp;w=432&amp;h=260&amp;dpr=2\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2021\/03\/google-docs-logo.jpg?q=49&amp;fit=crop&amp;w=432&amp;h=260&amp;dpr=2\"\/><img width=\"1200\" height=\"555\" loading=\"lazy\" decoding=\"async\" alt=\"Google Docs logo\" data-img-url=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2021\/03\/google-docs-logo.jpg\" src=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2021\/03\/google-docs-logo.jpg\" style=\"display:block;height:auto;max-width:100%;\"\/>\n    <\/picture>\n<\/figure><\/div>\n<\/p><\/div>\n<\/p><\/div>\n<p>\t\t<\/a><\/p>\n<p>                    <span data-field=\"label\" class=\"article-card-label\">Associated<\/span><\/p>\n<div class=\"w-display-card-content regular article-block\">\n<h5 class=\"display-card-title \">\n<p>\t\t<a href=\"https:\/\/www.howtogeek.com\/720411\/how-to-create-a-drop-cap-in-google-docs\/\" title=\"How to Create a Drop Cap in Google Docs\" target=\"_blank\"><br \/>\n\t\t\tHow to Create a Drop Cap in Google Docs<br \/>\n\t\t<\/a><br \/>\n\t<\/h5>\n<p class=\"display-card-excerpt\">You&#8217;ll be able to subtly enhance the looks of your doc with a drop cap.<\/p>\n<\/p><\/div>\n<\/p><\/div>\n<p>This impact was potential, however solely through the use of the float property with some cautious tweaks to associated kinds. The <strong>initial-letter<\/strong> property simplifies this, with a easy worth indicating the size of that letter:<\/p>\n<pre>\n        <code class=\"hljs xml\">p {<br\/>\u00a0\u00a0\u00a0\u00a0<br\/>\u00a0\u00a0\u00a0\u00a0initial-letter: 3;<br\/>}<br\/><\/code>\n    <\/pre>\n<p>You may as well present a second worth which determines the baseline of the drop-capped letter:<\/p>\n<pre>\n        <code class=\"hljs xml\">p {<br\/>\u00a0\u00a0\u00a0\u00a0<br\/>\u00a0\u00a0\u00a0\u00a0initial-letter: 2 1;<br\/>}<br\/><\/code>\n    <\/pre>\n<p>Utilizing these values, you&#8217;ll be able to management the dimensions and vertical place of drop-capped letters:<\/p>\n<div class=\"body-img landscape \">\n<div class=\"responsive-img  image-expandable  img-article-item\" style=\"padding-bottom:36.761229314421%\" data-img-url=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-initial-letter.png\" data-modal-id=\"single-image-modal\" data-modal-container-id=\"single-image-modal-container\" data-img-caption=\"&quot;&quot;\">\n<figure>\n        <picture><source media=\"(min-width: 1024px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-initial-letter.png?q=70&amp;fit=crop&amp;w=825&amp;dpr=1\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-initial-letter.png?q=70&amp;fit=crop&amp;w=825&amp;dpr=1\"\/><source media=\"(min-width: 768px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-initial-letter.png?q=70&amp;fit=crop&amp;w=825&amp;dpr=1\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-initial-letter.png?q=70&amp;fit=crop&amp;w=825&amp;dpr=1\"\/><source media=\"(min-width: 481px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-initial-letter.png?q=70&amp;fit=crop&amp;w=800&amp;dpr=1\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-initial-letter.png?q=70&amp;fit=crop&amp;w=800&amp;dpr=1\"\/><source media=\"(min-width: 0px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-initial-letter.png?q=70&amp;fit=crop&amp;w=500&amp;dpr=1\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-initial-letter.png?q=70&amp;fit=crop&amp;w=500&amp;dpr=1\"\/><img width=\"846\" height=\"311\" loading=\"lazy\" decoding=\"async\" alt=\"Two paragraphs of sample text with large, bold initial letters.\" data-img-url=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-initial-letter.png\" src=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-initial-letter.png\" style=\"display:block;height:auto;max-width:100%;\"\/>\n    <\/picture>\n<\/figure><\/div>\n<\/p><\/div>\n<h2 id=\"text-emphasis\">\n            <span class=\"item-num\">6 <\/span><br \/>\n        <span><br \/>\n                            text-emphasis<br \/>\n                    <\/span><br \/>\n       <\/h2>\n<p>The <strong>text-emphasis<\/strong> property has nothing to do with the em (emphasis) tag or the italic worth for font-style that can be utilized to imitate the look of emphasised textual content. As an alternative, it\u2019s a manner of marking textual content to emphasise it, a bit like underlining it. The principle distinction is that text-emphasis attracts a selected character both above or under particular person characters.<\/p>\n<pre>p {<br\/>text-emphasis: crammed double-circle purple;<br\/>}<p>.data {<br\/>text-emphasis: \"!\";<br\/>}<br\/><\/p><\/pre>\n<p>You should use the text-emphasis-position property to show marks both <strong>over<\/strong> or <strong>beneath<\/strong> the textual content in horizontal writing mode. Nevertheless it\u2019s the text-emphasis model property that will get actually fascinating (text-emphasis is a shorthand for each). You should use a worth like \u201ctriangle\u201d or \u201ccircle\u201d to make use of a generic image. You may as well use any Unicode character, in quote marks, together with emojis:<\/p>\n<div class=\"body-img landscape \">\n<div class=\"responsive-img  image-expandable  img-article-item\" style=\"padding-bottom:34.51536643026%\" data-img-url=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-emphasis.png\" data-modal-id=\"single-image-modal\" data-modal-container-id=\"single-image-modal-container\" data-img-caption=\"&quot;&quot;\">\n<figure>\n        <picture><source media=\"(min-width: 1024px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-emphasis.png?q=70&amp;fit=crop&amp;w=825&amp;dpr=1\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-emphasis.png?q=70&amp;fit=crop&amp;w=825&amp;dpr=1\"\/><source media=\"(min-width: 768px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-emphasis.png?q=70&amp;fit=crop&amp;w=825&amp;dpr=1\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-emphasis.png?q=70&amp;fit=crop&amp;w=825&amp;dpr=1\"\/><source media=\"(min-width: 481px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-emphasis.png?q=70&amp;fit=crop&amp;w=800&amp;dpr=1\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-emphasis.png?q=70&amp;fit=crop&amp;w=800&amp;dpr=1\"\/><source media=\"(min-width: 0px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-emphasis.png?q=70&amp;fit=crop&amp;w=500&amp;dpr=1\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-emphasis.png?q=70&amp;fit=crop&amp;w=500&amp;dpr=1\"\/><img width=\"846\" height=\"292\" loading=\"lazy\" decoding=\"async\" alt=\"Some sample text with a fire emoji above each letter.\" data-img-url=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-emphasis.png\" src=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-emphasis.png\" style=\"display:block;height:auto;max-width:100%;\"\/>\n    <\/picture>\n<\/figure><\/div>\n<\/p><\/div>\n<section class=\"emaki-custom-block emaki-custom-tip\" data-nosnippet=\"\">\n<div class=\"emaki-custom tip\" id=\"custom_block_47\">\n<div class=\"custom_block-content tip\">\n<p>A \u201csesame\u201d is a typographic mark utilized in East Asian languages for emphasis. Since text-emphasis helps this character, your CSS can now legitimately embrace the worth \u201copen sesame.\u201d<\/p>\n<\/p><\/div>\n<\/p><\/div>\n<\/section>\n<h2 id=\"text-wrap-style\">\n            <span class=\"item-num\">7 <\/span><br \/>\n        <span><br \/>\n                            text-wrap-style<br \/>\n                    <\/span><br \/>\n       <\/h2>\n<p>The <strong>text-wrap-style<\/strong> property is the most recent on this listing, with assist throughout the most recent browsers touchdown in October 2024. When textual content inside a component wraps, this property hints to the browser what its precedence needs to be.<\/p>\n<p>The 2 most important values are <strong>fairly<\/strong> and <strong>steadiness<\/strong>. The previous means that the browser ought to optimize for format over pace. It ought to embrace enhancements like protecting the variety of orphan parts to a minimal. In the meantime, steadiness ought to make sure the variety of characters on every line is as shut as potential.<\/p>\n<div class=\"body-img landscape \">\n<div class=\"responsive-img  image-expandable  img-article-item\" style=\"padding-bottom:25.812619502868%\" data-img-url=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-wrap-style.png\" data-modal-id=\"single-image-modal\" data-modal-container-id=\"single-image-modal-container\" data-img-caption=\"&quot;&quot;\">\n<figure>\n        <picture><source media=\"(min-width: 1024px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-wrap-style.png?q=70&amp;fit=crop&amp;w=825&amp;dpr=1\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-wrap-style.png?q=70&amp;fit=crop&amp;w=825&amp;dpr=1\"\/><source media=\"(min-width: 768px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-wrap-style.png?q=70&amp;fit=crop&amp;w=825&amp;dpr=1\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-wrap-style.png?q=70&amp;fit=crop&amp;w=825&amp;dpr=1\"\/><source media=\"(min-width: 481px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-wrap-style.png?q=70&amp;fit=crop&amp;w=800&amp;dpr=1\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-wrap-style.png?q=70&amp;fit=crop&amp;w=800&amp;dpr=1\"\/><source media=\"(min-width: 0px)\" data-srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-wrap-style.png?q=49&amp;fit=crop&amp;w=500&amp;dpr=2\" srcset=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-wrap-style.png?q=49&amp;fit=crop&amp;w=500&amp;dpr=2\"\/><img width=\"1046\" height=\"270\" loading=\"lazy\" decoding=\"async\" alt=\"Two blocks of the same text with line breaks occurring at different points.\" data-img-url=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-wrap-style.png\" src=\"https:\/\/static1.howtogeekimages.com\/wordpress\/wp-content\/uploads\/2025\/05\/css-text-wrap-style.png\" style=\"display:block;height:auto;max-width:100%;\"\/>\n    <\/picture>\n<\/figure><\/div>\n<\/p><\/div>\n<p> Because it\u2019s instructive, and assist continues to be new, you may not discover an enormous distinction when utilizing this property. The easiest way to attempt it out is to experiment on current pages and see what the varied results are like. Both manner, although, it\u2019s completely protected to make use of because the impact is delicate, with an inexpensive default.<\/p>\n<\/p><\/div>\n<iframe src=\"https:\/\/www.fiverr.com\/gig_widgets?id=U2FsdGVkX18x7XQvttUTrv1oEqmGNGTgvvCUiUoJ\/AP4z\/UyMz8lXGOLpu15jIMxBbTR0gmD5uBoFvhC4KWeALQRp3h\/X\/AwcVD0K8Wj9H\/ZzYKzcCNHosB9oS4SCJJFWiN85P9ICAc4OgCoE\/wHKIY7CDkf2\/DQ1vqGvk4smVe5cRDEmrLPCWi4FC8p40VUhSmWQ5udCm0zoJtorgWv3vbDQw0kKYkwn39ozAnQXDe+YvWMxkLFWA+O3TFwkJvdkIK+\/AUSnRssPKt5WHY0FhNOxnSPcLslEL4G4\/RfP95ve99U+kRnDy3X+KtzdQLY+u935ghON\/o3UE4IMv9oN6JX9RnxzL\/LRcOgnHigxStSGPKsZYtnz8RWNVT\/rOLAibqiWJadC5MYHRbekF3eg6FOGrQGkXYbsn0+a5aovnlLCbLwIqY9fcS17UX8J235iQ6cdmHNbrPeS84CMm34RA==&affiliate_id=1052423&strip_google_tagmanager=true\" loading=\"lazy\" data-with-title=\"true\" class=\"fiverr_nga_frame\" frameborder=\"0\" height=\"350\" width=\"100%\" referrerpolicy=\"no-referrer-when-downgrade\" data-mode=\"random_gigs\" onload=\" var frame = this; var script = document.createElement('script'); script.addEventListener('load', function() { window.FW_SDK.register(frame); }); script.setAttribute('src', 'https:\/\/www.fiverr.com\/gig_widgets\/sdk'); document.body.appendChild(script); \" ><\/iframe>\n<br \/><a href=\"https:\/\/www.howtogeek.com\/css-properties-youve-never-heard-of\/\">Source link <\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Even if you happen to\u2019re an professional internet designer, there are many obscure CSS properties you\u2019re unlikely ever to make use of. In truth, with&#8230;<\/p>\n","protected":false},"author":1,"featured_media":78484,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[7],"tags":[],"class_list":["post-78483","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tech-universe"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>7 CSS Properties You\u2019ve Never Heard Of (and How to Use Them) - mailinvest.blog<\/title>\n<meta name=\"description\" content=\"Technology is forever changing, and there are always new pieces of technology to replace obsolete ones. Tons of people enjoy reading tech blogs on a daily basis.mailinvest.blog tracks all the latest consumer technology breakthroughs and shows you what&#039;s new, what matters and how technology can enrich your life. mailinvest.blog also provides the information, tools, and advice that helps when deciding what to buy.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/mailinvest.blog\/index.php\/2025\/05\/24\/7-css-properties-youve-never-heard-of-and-how-to-use-them\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"7 CSS Properties You\u2019ve Never Heard Of (and How to Use Them) - mailinvest.blog\" \/>\n<meta property=\"og:description\" content=\"Technology is forever changing, and there are always new pieces of technology to replace obsolete ones. Tons of people enjoy reading tech blogs on a daily basis.mailinvest.blog tracks all the latest consumer technology breakthroughs and shows you what&#039;s new, what matters and how technology can enrich your life. mailinvest.blog also provides the information, tools, and advice that helps when deciding what to buy.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/mailinvest.blog\/index.php\/2025\/05\/24\/7-css-properties-youve-never-heard-of-and-how-to-use-them\/\" \/>\n<meta property=\"og:site_name\" content=\"mailinvest.blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/freelanceracademic\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-05-24T11:45:08+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-05-24T11:46:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/mailinvest.blog\/wp-content\/uploads\/2025\/05\/illustration-of-a-laptop-with-the-css-logo-a-grid-in-the-behind-and-some-icons-around-it.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin@mailinvest.blog\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin@mailinvest.blog\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/index.php\\\/2025\\\/05\\\/24\\\/7-css-properties-youve-never-heard-of-and-how-to-use-them\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/index.php\\\/2025\\\/05\\\/24\\\/7-css-properties-youve-never-heard-of-and-how-to-use-them\\\/\"},\"author\":{\"name\":\"admin@mailinvest.blog\",\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/#\\\/schema\\\/person\\\/012701c4c204d4e4ebd34f926cfd31a4\"},\"headline\":\"7 CSS Properties You\u2019ve Never Heard Of (and How to Use Them)\",\"datePublished\":\"2025-05-24T11:45:08+00:00\",\"dateModified\":\"2025-05-24T11:46:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/index.php\\\/2025\\\/05\\\/24\\\/7-css-properties-youve-never-heard-of-and-how-to-use-them\\\/\"},\"wordCount\":1233,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/index.php\\\/2025\\\/05\\\/24\\\/7-css-properties-youve-never-heard-of-and-how-to-use-them\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/mailinvest.blog\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/illustration-of-a-laptop-with-the-css-logo-a-grid-in-the-behind-and-some-icons-around-it.png\",\"articleSection\":[\"Tech Universe\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/mailinvest.blog\\\/index.php\\\/2025\\\/05\\\/24\\\/7-css-properties-youve-never-heard-of-and-how-to-use-them\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/index.php\\\/2025\\\/05\\\/24\\\/7-css-properties-youve-never-heard-of-and-how-to-use-them\\\/\",\"url\":\"https:\\\/\\\/mailinvest.blog\\\/index.php\\\/2025\\\/05\\\/24\\\/7-css-properties-youve-never-heard-of-and-how-to-use-them\\\/\",\"name\":\"7 CSS Properties You\u2019ve Never Heard Of (and How to Use Them) - mailinvest.blog\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/index.php\\\/2025\\\/05\\\/24\\\/7-css-properties-youve-never-heard-of-and-how-to-use-them\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/index.php\\\/2025\\\/05\\\/24\\\/7-css-properties-youve-never-heard-of-and-how-to-use-them\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/mailinvest.blog\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/illustration-of-a-laptop-with-the-css-logo-a-grid-in-the-behind-and-some-icons-around-it.png\",\"datePublished\":\"2025-05-24T11:45:08+00:00\",\"dateModified\":\"2025-05-24T11:46:32+00:00\",\"description\":\"Technology is forever changing, and there are always new pieces of technology to replace obsolete ones. Tons of people enjoy reading tech blogs on a daily basis.mailinvest.blog tracks all the latest consumer technology breakthroughs and shows you what's new, what matters and how technology can enrich your life. mailinvest.blog also provides the information, tools, and advice that helps when deciding what to buy.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/index.php\\\/2025\\\/05\\\/24\\\/7-css-properties-youve-never-heard-of-and-how-to-use-them\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/mailinvest.blog\\\/index.php\\\/2025\\\/05\\\/24\\\/7-css-properties-youve-never-heard-of-and-how-to-use-them\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/index.php\\\/2025\\\/05\\\/24\\\/7-css-properties-youve-never-heard-of-and-how-to-use-them\\\/#primaryimage\",\"url\":\"https:\\\/\\\/mailinvest.blog\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/illustration-of-a-laptop-with-the-css-logo-a-grid-in-the-behind-and-some-icons-around-it.png\",\"contentUrl\":\"https:\\\/\\\/mailinvest.blog\\\/wp-content\\\/uploads\\\/2025\\\/05\\\/illustration-of-a-laptop-with-the-css-logo-a-grid-in-the-behind-and-some-icons-around-it.png\",\"width\":1920,\"height\":1080},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/index.php\\\/2025\\\/05\\\/24\\\/7-css-properties-youve-never-heard-of-and-how-to-use-them\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/mailinvest.blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"7 CSS Properties You\u2019ve Never Heard Of (and How to Use Them)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/#website\",\"url\":\"https:\\\/\\\/mailinvest.blog\\\/\",\"name\":\"mailinvest.blog\",\"description\":\"Technology is forever changing, and there are always new pieces of technology to replace obsolete ones. Tons of people enjoy reading tech blogs on a daily basis. mailinvest.blog tracks all the latest consumer technology breakthroughs and shows you what&#039;s new, what matters and how technology can enrich your life. mailinvest.blog also provides the information, tools, and advice that helps when deciding what to buy.\",\"publisher\":{\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/mailinvest.blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/#organization\",\"name\":\"mailinvest\",\"url\":\"https:\\\/\\\/mailinvest.blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/mailinvest.blog\\\/wp-content\\\/uploads\\\/2022\\\/01\\\/default.png\",\"contentUrl\":\"https:\\\/\\\/mailinvest.blog\\\/wp-content\\\/uploads\\\/2022\\\/01\\\/default.png\",\"width\":1000,\"height\":1000,\"caption\":\"mailinvest\"},\"image\":{\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/freelanceracademic\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/mailinvest.blog\\\/#\\\/schema\\\/person\\\/012701c4c204d4e4ebd34f926cfd31a4\",\"name\":\"admin@mailinvest.blog\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/98ed217bd0f3d6a6dcae2d9b0c76e305b049a07275e315e1407e19ec8b08e139?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/98ed217bd0f3d6a6dcae2d9b0c76e305b049a07275e315e1407e19ec8b08e139?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/98ed217bd0f3d6a6dcae2d9b0c76e305b049a07275e315e1407e19ec8b08e139?s=96&d=mm&r=g\",\"caption\":\"admin@mailinvest.blog\"},\"sameAs\":[\"https:\\\/\\\/mailinvest.blog\",\"admin@mailinvest.blog\"],\"url\":\"https:\\\/\\\/mailinvest.blog\\\/index.php\\\/author\\\/adminmailinvest-blog\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"7 CSS Properties You\u2019ve Never Heard Of (and How to Use Them) - mailinvest.blog","description":"Technology is forever changing, and there are always new pieces of technology to replace obsolete ones. Tons of people enjoy reading tech blogs on a daily basis.mailinvest.blog tracks all the latest consumer technology breakthroughs and shows you what's new, what matters and how technology can enrich your life. mailinvest.blog also provides the information, tools, and advice that helps when deciding what to buy.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/mailinvest.blog\/index.php\/2025\/05\/24\/7-css-properties-youve-never-heard-of-and-how-to-use-them\/","og_locale":"en_US","og_type":"article","og_title":"7 CSS Properties You\u2019ve Never Heard Of (and How to Use Them) - mailinvest.blog","og_description":"Technology is forever changing, and there are always new pieces of technology to replace obsolete ones. Tons of people enjoy reading tech blogs on a daily basis.mailinvest.blog tracks all the latest consumer technology breakthroughs and shows you what's new, what matters and how technology can enrich your life. mailinvest.blog also provides the information, tools, and advice that helps when deciding what to buy.","og_url":"https:\/\/mailinvest.blog\/index.php\/2025\/05\/24\/7-css-properties-youve-never-heard-of-and-how-to-use-them\/","og_site_name":"mailinvest.blog","article_publisher":"https:\/\/www.facebook.com\/freelanceracademic\/","article_published_time":"2025-05-24T11:45:08+00:00","article_modified_time":"2025-05-24T11:46:32+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/mailinvest.blog\/wp-content\/uploads\/2025\/05\/illustration-of-a-laptop-with-the-css-logo-a-grid-in-the-behind-and-some-icons-around-it.png","type":"image\/png"}],"author":"admin@mailinvest.blog","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin@mailinvest.blog","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/mailinvest.blog\/index.php\/2025\/05\/24\/7-css-properties-youve-never-heard-of-and-how-to-use-them\/#article","isPartOf":{"@id":"https:\/\/mailinvest.blog\/index.php\/2025\/05\/24\/7-css-properties-youve-never-heard-of-and-how-to-use-them\/"},"author":{"name":"admin@mailinvest.blog","@id":"https:\/\/mailinvest.blog\/#\/schema\/person\/012701c4c204d4e4ebd34f926cfd31a4"},"headline":"7 CSS Properties You\u2019ve Never Heard Of (and How to Use Them)","datePublished":"2025-05-24T11:45:08+00:00","dateModified":"2025-05-24T11:46:32+00:00","mainEntityOfPage":{"@id":"https:\/\/mailinvest.blog\/index.php\/2025\/05\/24\/7-css-properties-youve-never-heard-of-and-how-to-use-them\/"},"wordCount":1233,"commentCount":0,"publisher":{"@id":"https:\/\/mailinvest.blog\/#organization"},"image":{"@id":"https:\/\/mailinvest.blog\/index.php\/2025\/05\/24\/7-css-properties-youve-never-heard-of-and-how-to-use-them\/#primaryimage"},"thumbnailUrl":"https:\/\/mailinvest.blog\/wp-content\/uploads\/2025\/05\/illustration-of-a-laptop-with-the-css-logo-a-grid-in-the-behind-and-some-icons-around-it.png","articleSection":["Tech Universe"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/mailinvest.blog\/index.php\/2025\/05\/24\/7-css-properties-youve-never-heard-of-and-how-to-use-them\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/mailinvest.blog\/index.php\/2025\/05\/24\/7-css-properties-youve-never-heard-of-and-how-to-use-them\/","url":"https:\/\/mailinvest.blog\/index.php\/2025\/05\/24\/7-css-properties-youve-never-heard-of-and-how-to-use-them\/","name":"7 CSS Properties You\u2019ve Never Heard Of (and How to Use Them) - mailinvest.blog","isPartOf":{"@id":"https:\/\/mailinvest.blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/mailinvest.blog\/index.php\/2025\/05\/24\/7-css-properties-youve-never-heard-of-and-how-to-use-them\/#primaryimage"},"image":{"@id":"https:\/\/mailinvest.blog\/index.php\/2025\/05\/24\/7-css-properties-youve-never-heard-of-and-how-to-use-them\/#primaryimage"},"thumbnailUrl":"https:\/\/mailinvest.blog\/wp-content\/uploads\/2025\/05\/illustration-of-a-laptop-with-the-css-logo-a-grid-in-the-behind-and-some-icons-around-it.png","datePublished":"2025-05-24T11:45:08+00:00","dateModified":"2025-05-24T11:46:32+00:00","description":"Technology is forever changing, and there are always new pieces of technology to replace obsolete ones. Tons of people enjoy reading tech blogs on a daily basis.mailinvest.blog tracks all the latest consumer technology breakthroughs and shows you what's new, what matters and how technology can enrich your life. mailinvest.blog also provides the information, tools, and advice that helps when deciding what to buy.","breadcrumb":{"@id":"https:\/\/mailinvest.blog\/index.php\/2025\/05\/24\/7-css-properties-youve-never-heard-of-and-how-to-use-them\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/mailinvest.blog\/index.php\/2025\/05\/24\/7-css-properties-youve-never-heard-of-and-how-to-use-them\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/mailinvest.blog\/index.php\/2025\/05\/24\/7-css-properties-youve-never-heard-of-and-how-to-use-them\/#primaryimage","url":"https:\/\/mailinvest.blog\/wp-content\/uploads\/2025\/05\/illustration-of-a-laptop-with-the-css-logo-a-grid-in-the-behind-and-some-icons-around-it.png","contentUrl":"https:\/\/mailinvest.blog\/wp-content\/uploads\/2025\/05\/illustration-of-a-laptop-with-the-css-logo-a-grid-in-the-behind-and-some-icons-around-it.png","width":1920,"height":1080},{"@type":"BreadcrumbList","@id":"https:\/\/mailinvest.blog\/index.php\/2025\/05\/24\/7-css-properties-youve-never-heard-of-and-how-to-use-them\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/mailinvest.blog\/"},{"@type":"ListItem","position":2,"name":"7 CSS Properties You\u2019ve Never Heard Of (and How to Use Them)"}]},{"@type":"WebSite","@id":"https:\/\/mailinvest.blog\/#website","url":"https:\/\/mailinvest.blog\/","name":"mailinvest.blog","description":"Technology is forever changing, and there are always new pieces of technology to replace obsolete ones. Tons of people enjoy reading tech blogs on a daily basis. mailinvest.blog tracks all the latest consumer technology breakthroughs and shows you what&#039;s new, what matters and how technology can enrich your life. mailinvest.blog also provides the information, tools, and advice that helps when deciding what to buy.","publisher":{"@id":"https:\/\/mailinvest.blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/mailinvest.blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/mailinvest.blog\/#organization","name":"mailinvest","url":"https:\/\/mailinvest.blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/mailinvest.blog\/#\/schema\/logo\/image\/","url":"https:\/\/mailinvest.blog\/wp-content\/uploads\/2022\/01\/default.png","contentUrl":"https:\/\/mailinvest.blog\/wp-content\/uploads\/2022\/01\/default.png","width":1000,"height":1000,"caption":"mailinvest"},"image":{"@id":"https:\/\/mailinvest.blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/freelanceracademic\/"]},{"@type":"Person","@id":"https:\/\/mailinvest.blog\/#\/schema\/person\/012701c4c204d4e4ebd34f926cfd31a4","name":"admin@mailinvest.blog","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/98ed217bd0f3d6a6dcae2d9b0c76e305b049a07275e315e1407e19ec8b08e139?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/98ed217bd0f3d6a6dcae2d9b0c76e305b049a07275e315e1407e19ec8b08e139?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/98ed217bd0f3d6a6dcae2d9b0c76e305b049a07275e315e1407e19ec8b08e139?s=96&d=mm&r=g","caption":"admin@mailinvest.blog"},"sameAs":["https:\/\/mailinvest.blog","admin@mailinvest.blog"],"url":"https:\/\/mailinvest.blog\/index.php\/author\/adminmailinvest-blog\/"}]}},"_links":{"self":[{"href":"https:\/\/mailinvest.blog\/index.php\/wp-json\/wp\/v2\/posts\/78483","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/mailinvest.blog\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/mailinvest.blog\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/mailinvest.blog\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/mailinvest.blog\/index.php\/wp-json\/wp\/v2\/comments?post=78483"}],"version-history":[{"count":1,"href":"https:\/\/mailinvest.blog\/index.php\/wp-json\/wp\/v2\/posts\/78483\/revisions"}],"predecessor-version":[{"id":78485,"href":"https:\/\/mailinvest.blog\/index.php\/wp-json\/wp\/v2\/posts\/78483\/revisions\/78485"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/mailinvest.blog\/index.php\/wp-json\/wp\/v2\/media\/78484"}],"wp:attachment":[{"href":"https:\/\/mailinvest.blog\/index.php\/wp-json\/wp\/v2\/media?parent=78483"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/mailinvest.blog\/index.php\/wp-json\/wp\/v2\/categories?post=78483"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/mailinvest.blog\/index.php\/wp-json\/wp\/v2\/tags?post=78483"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}