{"id":10276,"date":"2024-01-18T18:18:00","date_gmt":"2024-01-18T18:18:00","guid":{"rendered":"https:\/\/codehim.com\/?p=10276"},"modified":"2024-01-22T16:19:04","modified_gmt":"2024-01-22T11:19:04","slug":"dashed-text-shadow-using-css","status":"publish","type":"post","link":"https:\/\/codehim.com\/text-input\/dashed-text-shadow-using-css\/","title":{"rendered":"Dashed Text Shadow Using CSS"},"content":{"rendered":"<p>This code creates dashed text shadow using CSS. It positions text with a colorful dashed outline. It&#8217;s helpful for adding decorative text effects. The code animates the shadows on hover, enhancing visual appeal.<\/p>\n<p>Apply this code to <a href=\"https:\/\/codehim.com\/html5-css3\/css-heading-styles-examples\/\" target=\"_blank\" rel=\"noopener\">headings<\/a> or elements needing a decorative touch. Enhance your webpage with dynamic dashed text shadows for eye-catching aesthetics. The benefit lies in engaging visual appeal.<\/p>\n<h2>How to Create Dashed Text Shadow Using CSS<\/h2>\n<p>1. First of all, load the <a href=\"https:\/\/github.com\/LeaVerou\/prefixfree\" target=\"_blank\" rel=\"noopener\">Prefixfree JS<\/a> and <a href=\"https:\/\/fonts.google.com\/\" target=\"_blank\" rel=\"noopener\">Google Fonts<\/a> for different typography by adding the following CDN link into the head tag of your HTML document.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/prefixfree\/1.0.7\/prefixfree.min.js\"&gt;&lt;\/script&gt;\r\n&lt;link href='https:\/\/fonts.googleapis.com\/css?family=Cookie' rel='stylesheet' type='text\/css'&gt;\r\n&lt;link href='https:\/\/fonts.googleapis.com\/css?family=Open+Sans+Condensed:700' rel='stylesheet' type='text\/css'&gt;\r\n&lt;link href='https:\/\/fonts.googleapis.com\/css?family=Sancreek' rel='stylesheet' type='text\/css'&gt;<\/pre>\n<p>2. Use the <code>span<\/code> and <code>div<\/code> elements with the class <code>dashed-shadow<\/code> to apply the dashed shadow effect.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;span data-text=\"Hello!\" class=\"dashed-shadow hello\"&gt;Hello!&lt;\/span&gt;\r\n&lt;br \/&gt;\r\n\r\n&lt;div data-text=\"This thing is\" class=\"dashed-shadow\"&gt;This thing is&lt;\/div&gt; &lt;br \/&gt;\r\n&lt;div class=\"sorta-block\"&gt;\r\n  &lt;div data-text=\"sort of\"class=\"dashed-shadow sorta\"&gt;sort of&lt;\/div&gt; \r\n&lt;\/div&gt;\r\n&lt;div data-text=\"a hipster-ish\" class=\"dashed-shadow hipsterish\"&gt;a hipster-ish&lt;\/div&gt; &lt;br \/&gt;\r\n&lt;div class=\"dashed-shadow dashed-shadow-text\"&gt;DASHED&lt;br \/&gt;&lt;span class=\"shadow\"&gt;SHADOW&lt;\/span&gt;&lt;\/div&gt; &lt;br \/&gt;<\/pre>\n<p>3. Customize the appearance in the CSS section, adjusting properties like color, font size, and animation duration. Enhance interactivity by animating the dashed shadow on hover.<\/p>\n<pre class=\"prettyprint linenums lang-css\">body {\r\n  font-family: 'Open Sans Condensed', sans-serif;\r\n  font-size: 85pt;\r\n  background-color: #e8e3c7;\r\n  text-align: center;\r\n  line-height: 1.2em;\r\n  padding-top: 70px;\r\n}\r\n\r\n.dashed-shadow {\r\n  position: relative;\r\n  top: 8px;\r\n  left: 8px;\r\n  display: inline-block;\r\n  color: #ba9186;\r\n}\r\n\r\n@keyframes dash-animation {\r\n  0% {\r\n    background-position: 0 0;\r\n  }\r\n  100% {\r\n    background-position: 100% 0;\r\n  }\r\n}\r\n.dashed-shadow:before {\r\n  content: \" \";\r\n  display: block;\r\n  position: absolute;\r\n  top: -8px;\r\n  left: -8px;\r\n  bottom: -2px;\r\n  right: -2px;\r\n  z-index: 1;\r\n  background-image: url('data:image\/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuMCIgeTE9IjEuMCIgeDI9IjEuMCIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIxMi41JSIgc3RvcC1jb2xvcj0iI2U4ZTNjNyIvPjxzdG9wIG9mZnNldD0iMTIuNSUiIHN0b3AtY29sb3I9IiNlOGUzYzciIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSIzNy41JSIgc3RvcC1jb2xvcj0iI2U4ZTNjNyIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjM3LjUlIiBzdG9wLWNvbG9yPSIjZThlM2M3Ii8+PHN0b3Agb2Zmc2V0PSI2Mi41JSIgc3RvcC1jb2xvcj0iI2U4ZTNjNyIvPjxzdG9wIG9mZnNldD0iNjIuNSUiIHN0b3AtY29sb3I9IiNlOGUzYzciIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSI4Ny41JSIgc3RvcC1jb2xvcj0iI2U4ZTNjNyIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9Ijg3LjUlIiBzdG9wLWNvbG9yPSIjZThlM2M3Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');\r\n  background-size: 100%;\r\n  background-image: -moz-linear-gradient(45deg, #e8e3c7 12.5%, rgba(232, 227, 199, 0) 12.5%, rgba(232, 227, 199, 0) 37.5%, #e8e3c7 37.5%, #e8e3c7 62.5%, rgba(232, 227, 199, 0) 62.5%, rgba(232, 227, 199, 0) 87.5%, #e8e3c7 87.5%);\r\n  background-image: -webkit-linear-gradient(45deg, #e8e3c7 12.5%, rgba(232, 227, 199, 0) 12.5%, rgba(232, 227, 199, 0) 37.5%, #e8e3c7 37.5%, #e8e3c7 62.5%, rgba(232, 227, 199, 0) 62.5%, rgba(232, 227, 199, 0) 87.5%, #e8e3c7 87.5%);\r\n  background-image: linear-gradient(45deg, #e8e3c7 12.5%, rgba(232, 227, 199, 0) 12.5%, rgba(232, 227, 199, 0) 37.5%, #e8e3c7 37.5%, #e8e3c7 62.5%, rgba(232, 227, 199, 0) 62.5%, rgba(232, 227, 199, 0) 87.5%, #e8e3c7 87.5%);\r\n  background-size: 6px 6px;\r\n}\r\n\r\n.dashed-shadow:hover:before {\r\n  animation: dash-animation 30s infinite linear;\r\n}\r\n\r\n.dashed-shadow:after {\r\n  z-index: 2;\r\n  content: attr(data-text);\r\n  position: absolute;\r\n  left: -8px;\r\n  top: -8px;\r\n  color: #b85b3f;\r\n  text-shadow: 3px 3px #e8e3c7;\r\n}\r\n\r\n.hello {\r\n  font-family: 'Cookie',cursive;\r\n  font-size: 140pt;\r\n}\r\n\r\n.sorta-block {\r\n  font-size: 50pt;\r\n  line-height: 1.1em;\r\n  -moz-transform: skew(0, -5deg);\r\n  -ms-transform: skew(0, -5deg);\r\n  -webkit-transform: skew(0, -5deg);\r\n  transform: skew(0, -5deg);\r\n  z-index: 3;\r\n  position: relative;\r\n  margin-top: 20px;\r\n  margin-bottom: 10px;\r\n}\r\n\r\n.sorta {\r\n  border-top: 4px solid #b85b3f;\r\n  border-bottom: 4px solid #b85b3f;\r\n  text-transform: uppercase;\r\n  z-index: 3;\r\n  font-style: italic;\r\n}\r\n\r\n.hipsterish {\r\n  font-family: 'Sancreek', cursive;\r\n  font-size: 70pt;\r\n}\r\n\r\n.dashed-shadow-text {\r\n  font-size: 140pt;\r\n  line-height: 0.7em;\r\n}\r\n\r\n.shadow {\r\n  font-size: 120pt;\r\n  line-height: 0.8em;\r\n}<\/pre>\n<p>Feel free to customize the code further to suit your specific design preferences and requirements. Experiment with various Google Fonts and styles to achieve the desired look.<\/p>\n<p>That&#8217;s all! hopefully, you have successfully created the Dashed Text Shadow effect on your webpage. If you have any questions or suggestions, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This code creates dashed text shadow using CSS. It positions text with a colorful dashed outline. It&#8217;s helpful for adding&#8230;<\/p>\n","protected":false},"author":1,"featured_media":10282,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[97],"tags":[],"class_list":["post-10276","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-text-input"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Dashed Text Shadow Using CSS &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a free code snippet to create a Dashed Text Shadow Using CSS. You can view demo and download the source code.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codehim.com\/text-input\/dashed-text-shadow-using-css\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Dashed Text Shadow Using CSS &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a free code snippet to create a Dashed Text Shadow Using CSS. You can view demo and download the source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/text-input\/dashed-text-shadow-using-css\/\" \/>\n<meta property=\"og:site_name\" content=\"CodeHim\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/codehimofficial\" \/>\n<meta property=\"article:published_time\" content=\"2024-01-18T18:18:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T11:19:04+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/12\/Dashed-Text-Shadow-Using-CSS.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"980\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Asif Mughal\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@CodeHimOfficial\" \/>\n<meta name=\"twitter:site\" content=\"@CodeHimOfficial\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Asif Mughal\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/codehim.com\/text-input\/dashed-text-shadow-using-css\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/text-input\/dashed-text-shadow-using-css\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Dashed Text Shadow Using CSS\",\"datePublished\":\"2024-01-18T18:18:00+00:00\",\"dateModified\":\"2024-01-22T11:19:04+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/text-input\/dashed-text-shadow-using-css\/\"},\"wordCount\":196,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/text-input\/dashed-text-shadow-using-css\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/12\/Dashed-Text-Shadow-Using-CSS.png\",\"articleSection\":[\"Text &amp; Input\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/text-input\/dashed-text-shadow-using-css\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/text-input\/dashed-text-shadow-using-css\/\",\"url\":\"https:\/\/codehim.com\/text-input\/dashed-text-shadow-using-css\/\",\"name\":\"Dashed Text Shadow Using CSS &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/text-input\/dashed-text-shadow-using-css\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/text-input\/dashed-text-shadow-using-css\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/12\/Dashed-Text-Shadow-Using-CSS.png\",\"datePublished\":\"2024-01-18T18:18:00+00:00\",\"dateModified\":\"2024-01-22T11:19:04+00:00\",\"description\":\"Here is a free code snippet to create a Dashed Text Shadow Using CSS. You can view demo and download the source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/text-input\/dashed-text-shadow-using-css\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/text-input\/dashed-text-shadow-using-css\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/text-input\/dashed-text-shadow-using-css\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/12\/Dashed-Text-Shadow-Using-CSS.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/12\/Dashed-Text-Shadow-Using-CSS.png\",\"width\":1280,\"height\":980,\"caption\":\"Dashed Text Shadow Using CSS\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/text-input\/dashed-text-shadow-using-css\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Text &amp; Input\",\"item\":\"https:\/\/codehim.com\/category\/text-input\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Dashed Text Shadow Using CSS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/codehim.com\/#website\",\"url\":\"https:\/\/codehim.com\/\",\"name\":\"CodeHim\",\"description\":\"Web Design Code Snippets\",\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"alternateName\":\"Web Design Codes\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/codehim.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/codehim.com\/#organization\",\"name\":\"CodeHim - Web Design Code & Scripts\",\"url\":\"https:\/\/codehim.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg\",\"contentUrl\":\"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg\",\"width\":280,\"height\":280,\"caption\":\"CodeHim - Web Design Code & Scripts\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/codehimofficial\",\"https:\/\/x.com\/CodeHimOfficial\",\"https:\/\/www.instagram.com\/codehim\/\",\"https:\/\/www.linkedin.com\/company\/codehim\",\"https:\/\/co.pinterest.com\/codehim\/\",\"https:\/\/www.youtube.com\/@codehim\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\",\"name\":\"Asif Mughal\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g\",\"caption\":\"Asif Mughal\"},\"description\":\"I code and create web elements for amazing people around the world. I like work with new people. New people new Experiences. I truly enjoy what I'm doing, which makes me more passionate about web development and coding. I am always ready to do challenging tasks whether it is about creating a custom CMS from scratch or customizing an existing system.\",\"sameAs\":[\"https:\/\/codehim.com\"],\"url\":\"https:\/\/codehim.com\/author\/asif-mughal\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Dashed Text Shadow Using CSS &#8212; CodeHim","description":"Here is a free code snippet to create a Dashed Text Shadow Using CSS. You can view demo and download the source code.","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:\/\/codehim.com\/text-input\/dashed-text-shadow-using-css\/","og_locale":"en_US","og_type":"article","og_title":"Dashed Text Shadow Using CSS &#8212; CodeHim","og_description":"Here is a free code snippet to create a Dashed Text Shadow Using CSS. You can view demo and download the source code.","og_url":"https:\/\/codehim.com\/text-input\/dashed-text-shadow-using-css\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-18T18:18:00+00:00","article_modified_time":"2024-01-22T11:19:04+00:00","og_image":[{"width":1280,"height":980,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/12\/Dashed-Text-Shadow-Using-CSS.png","type":"image\/png"}],"author":"Asif Mughal","twitter_card":"summary_large_image","twitter_creator":"@CodeHimOfficial","twitter_site":"@CodeHimOfficial","twitter_misc":{"Written by":"Asif Mughal","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/codehim.com\/text-input\/dashed-text-shadow-using-css\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/text-input\/dashed-text-shadow-using-css\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Dashed Text Shadow Using CSS","datePublished":"2024-01-18T18:18:00+00:00","dateModified":"2024-01-22T11:19:04+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/text-input\/dashed-text-shadow-using-css\/"},"wordCount":196,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/text-input\/dashed-text-shadow-using-css\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/12\/Dashed-Text-Shadow-Using-CSS.png","articleSection":["Text &amp; Input"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/text-input\/dashed-text-shadow-using-css\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/text-input\/dashed-text-shadow-using-css\/","url":"https:\/\/codehim.com\/text-input\/dashed-text-shadow-using-css\/","name":"Dashed Text Shadow Using CSS &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/text-input\/dashed-text-shadow-using-css\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/text-input\/dashed-text-shadow-using-css\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/12\/Dashed-Text-Shadow-Using-CSS.png","datePublished":"2024-01-18T18:18:00+00:00","dateModified":"2024-01-22T11:19:04+00:00","description":"Here is a free code snippet to create a Dashed Text Shadow Using CSS. You can view demo and download the source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/text-input\/dashed-text-shadow-using-css\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/text-input\/dashed-text-shadow-using-css\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/text-input\/dashed-text-shadow-using-css\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/12\/Dashed-Text-Shadow-Using-CSS.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/12\/Dashed-Text-Shadow-Using-CSS.png","width":1280,"height":980,"caption":"Dashed Text Shadow Using CSS"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/text-input\/dashed-text-shadow-using-css\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"Text &amp; Input","item":"https:\/\/codehim.com\/category\/text-input\/"},{"@type":"ListItem","position":3,"name":"Dashed Text Shadow Using CSS"}]},{"@type":"WebSite","@id":"https:\/\/codehim.com\/#website","url":"https:\/\/codehim.com\/","name":"CodeHim","description":"Web Design Code Snippets","publisher":{"@id":"https:\/\/codehim.com\/#organization"},"alternateName":"Web Design Codes","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codehim.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/codehim.com\/#organization","name":"CodeHim - Web Design Code & Scripts","url":"https:\/\/codehim.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/#\/schema\/logo\/image\/","url":"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg","contentUrl":"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg","width":280,"height":280,"caption":"CodeHim - Web Design Code & Scripts"},"image":{"@id":"https:\/\/codehim.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/codehimofficial","https:\/\/x.com\/CodeHimOfficial","https:\/\/www.instagram.com\/codehim\/","https:\/\/www.linkedin.com\/company\/codehim","https:\/\/co.pinterest.com\/codehim\/","https:\/\/www.youtube.com\/@codehim"]},{"@type":"Person","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed","name":"Asif Mughal","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g","caption":"Asif Mughal"},"description":"I code and create web elements for amazing people around the world. I like work with new people. New people new Experiences. I truly enjoy what I'm doing, which makes me more passionate about web development and coding. I am always ready to do challenging tasks whether it is about creating a custom CMS from scratch or customizing an existing system.","sameAs":["https:\/\/codehim.com"],"url":"https:\/\/codehim.com\/author\/asif-mughal\/"}]}},"views":393,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/10276","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/comments?post=10276"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/10276\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/10282"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=10276"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=10276"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=10276"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}