{"id":8890,"date":"2024-01-10T17:56:00","date_gmt":"2024-01-10T17:56:00","guid":{"rendered":"https:\/\/codehim.com\/?p=8890"},"modified":"2024-01-22T15:56:37","modified_gmt":"2024-01-22T10:56:37","slug":"3-dots-dropdown-menu-html-css","status":"publish","type":"post","link":"https:\/\/codehim.com\/menu\/3-dots-dropdown-menu-html-css\/","title":{"rendered":"3 Dots Dropdown Menu HTML CSS"},"content":{"rendered":"<p>This code implements a 3 Dots Dropdown Menu using HTML, CSS, and JavaScript. It creates a button with three dots, and when clicked, it displays a menu with different options. The JavaScript code handles the visibility of the menu when clicking the button. It&#8217;s helpful for adding a user-friendly dropdown menu to a web page.<\/p>\n<p>Furthermore, it provides a neat and compact dropdown menu, saving space and improving the user experience. You can use this code on your website to enhance user interaction.<\/p>\n<h2>How to Create 3 Dots Dropdown Menu in HTML CSS<\/h2>\n<p>1. First of all, load the <a href=\"https:\/\/necolas.github.io\/normalize.css\/\" target=\"_blank\" rel=\"noopener\">Normalize CSS<\/a> by adding the following CDN link into the head tag of your HTML document.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/normalize\/5.0.0\/normalize.min.css\"&gt;\r\n<\/pre>\n<p>2. In your HTML file, create a container div that will hold the dropdown button and menu. Inside this container, add a button element with the class <code>\"more-btn\"<\/code> and three spans with the class <code>\"more-dot\"<\/code>. These dots represent the menu trigger.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;div class=\"container\"&gt;\r\n    &lt;div class=\"more\"&gt;\r\n        &lt;button id=\"more-btn\" class=\"more-btn\"&gt;\r\n            &lt;span class=\"more-dot\"&gt;&lt;\/span&gt;\r\n            &lt;span class=\"more-dot\"&gt;&lt;\/span&gt;\r\n            &lt;span class=\"more-dot\"&gt;&lt;\/span&gt;\r\n        &lt;\/button&gt;\r\n        &lt;div class=\"more-menu\"&gt;\r\n            &lt;div class=\"more-menu-caret\"&gt;\r\n                &lt;div class=\"more-menu-caret-outer\"&gt;&lt;\/div&gt;\r\n                &lt;div class=\"more-menu-caret-inner\"&gt;&lt;\/div&gt;\r\n            &lt;\/div&gt;\r\n            &lt;ul class=\"more-menu-items\" tabindex=\"-1\" role=\"menu\" aria-labelledby=\"more-btn\" aria-hidden=\"true\"&gt;\r\n                &lt;li class=\"more-menu-item\" role=\"presentation\"&gt;\r\n                    &lt;button type=\"button\" class=\"more-menu-btn\" role=\"menuitem\"&gt;Share&lt;\/button&gt;\r\n                &lt;\/li&gt;\r\n                &lt;li class=\"more-menu-item\" role=\"presentation\"&gt;\r\n                    &lt;button type=\"button\" class=\"more-menu-btn\" role=\"menuitem\"&gt;Copy&lt;\/button&gt;\r\n                &lt;\/li&gt;\r\n                &lt;li class=\"more-menu-item\" role=\"presentation\"&gt;\r\n                    &lt;button type=\"button\" class=\"more-menu-btn\" role=\"menuitem\"&gt;Embed&lt;\/button&gt;\r\n                &lt;\/li&gt;\r\n                &lt;li class=\"more-menu-item\" role=\"presentation\"&gt;\r\n                    &lt;button type=\"button\" class=\"more-menu-btn\" role=\"menuitem\"&gt;Block&lt;\/button&gt;\r\n                &lt;\/li&gt;\r\n                &lt;li class=\"more-menu-item\" role=\"presentation\"&gt;\r\n                    &lt;button type=\"button\" class=\"more-menu-btn\" role=\"menuitem\"&gt;Report&lt;\/button&gt;\r\n                &lt;\/li&gt;\r\n            &lt;\/ul&gt;\r\n        &lt;\/div&gt;\r\n    &lt;\/div&gt;\r\n&lt;\/div&gt;<\/pre>\n<p>Modify the menu items to suit your specific needs. You can change the text and functionality of each button by editing the HTML within the <code>&lt;ul class=\"more-menu-items\"&gt;<\/code> element.<\/p>\n<p>3. Now, add the following CSS to your project to customize the appearance of the dots menu. The following CSS code includes styles for the buttons, dots, and dropdown menu.<\/p>\n<pre class=\"prettyprint linenums lang-css\">\/* Page *\/\r\n.cd__main{\r\n    position: relative;\r\n   min-height: 640px;\r\n}\r\n.container {\r\n    position: absolute;\r\n    top: 50%;\r\n    left: 50%;\r\n    margin-right: -50%;\r\n    transform: translate(-50%, -50%);\r\n    text-align: center;\r\n}\r\n\r\n.more-menu {\r\n    width: 100px;\r\n}\r\n\r\n\/* More Button \/ Dropdown Menu *\/\r\n\r\n.more-btn,\r\n.more-menu-btn {\r\n    background: none;\r\n    border: 0 none;\r\n    line-height: normal;\r\n    overflow: visible;\r\n    -webkit-user-select: none;\r\n    -moz-user-select: none;\r\n    -ms-user-select: none;\r\n    width: 100%;\r\n    text-align: left;\r\n    outline: none;\r\n    cursor: pointer;\r\n}\r\n\r\n.more-dot {\r\n    background-color: #aab8c2;\r\n    margin: 0 auto;\r\n    display: inline-block;\r\n    width: 7px;\r\n    height: 7px;\r\n    margin-right: 1px;\r\n    border-radius: 50%;\r\n    transition: background-color 0.3s;\r\n}\r\n\r\n.more-menu {\r\n    position: absolute;\r\n    top: 100%;\r\n    z-index: 900;\r\n    float: left;\r\n    padding: 10px 0;\r\n    margin-top: 9px;\r\n    background-color: #fff;\r\n    border: 1px solid #ccd8e0;\r\n    border-radius: 4px;\r\n    box-shadow: 1px 1px 3px rgba(0,0,0,0.25);\r\n    opacity: 0;\r\n    transform: translate(0, 15px) scale(.95);\r\n    transition: transform 0.1s ease-out, opacity 0.1s ease-out;\r\n    pointer-events: none;\r\n}\r\n\r\n.more-menu-caret {\r\n    position: absolute;\r\n    top: -10px;\r\n    left: 12px;\r\n    width: 18px;\r\n    height: 10px;\r\n    float: left;\r\n    overflow: hidden;\r\n}\r\n\r\n.more-menu-caret-outer,\r\n.more-menu-caret-inner {\r\n    position: absolute;\r\n    display: inline-block;\r\n    margin-left: -1px;\r\n    font-size: 0;\r\n    line-height: 1;\r\n}\r\n\r\n.more-menu-caret-outer {\r\n    border-bottom: 10px solid #c1d0da;\r\n    border-left: 10px solid transparent;\r\n    border-right: 10px solid transparent;\r\n    height: auto;\r\n    left: 0;\r\n    top: 0;\r\n    width: auto;    \r\n}\r\n\r\n.more-menu-caret-inner {\r\n    top: 1px;\r\n    left: 1px;\r\n    border-left: 9px solid transparent;\r\n    border-right: 9px solid transparent;\r\n    border-bottom: 9px solid #fff;\r\n}\r\n\r\n.more-menu-items {\r\n    margin: 0;\r\n    list-style: none;\r\n    padding: 0;\r\n}\r\n\r\n.more-menu-item {\r\n    display: block;\r\n}\r\n\r\n.more-menu-btn {\r\n    min-width: 100%;\r\n    color: #66757f;\r\n    cursor: pointer;\r\n    display: block;\r\n    font-size: 13px;\r\n    line-height: 18px;\r\n    padding: 5px 20px;\r\n    position: relative;\r\n    white-space: nowrap;\r\n}\r\n\r\n.more-menu-item:hover {\r\n    background-color: #489fe5;\r\n}\r\n\r\n.more-menu-item:hover .more-menu-btn {\r\n    color: #fff;\r\n}\r\n\r\n.more-btn:hover .more-dot,\r\n.show-more-menu .more-dot {\r\n    background-color: #516471;\r\n}\r\n\r\n.show-more-menu .more-menu {\r\n    opacity: 1;\r\n    transform: translate(0, 0) scale(1);\r\n    pointer-events: auto;\r\n}<\/pre>\n<p>4. Finally, include the following JavaScript code to handle the menu&#8217;s functionality. This code listens for a click on the button and toggles the menu&#8217;s visibility.<\/p>\n<pre class=\"prettyprint linenums lang-js\">var el = document.querySelector('.more');\r\nvar btn = el.querySelector('.more-btn');\r\nvar menu = el.querySelector('.more-menu');\r\nvar visible = false;\r\n\r\nfunction showMenu(e) {\r\n    e.preventDefault();\r\n    if (!visible) {\r\n        visible = true;\r\n        el.classList.add('show-more-menu');\r\n        menu.setAttribute('aria-hidden', false);\r\n        document.addEventListener('mousedown', hideMenu, false);\r\n    }\r\n}\r\n\r\nfunction hideMenu(e) {\r\n    if (btn.contains(e.target)) {\r\n        return;\r\n    }\r\n    if (visible) {\r\n        visible = false;\r\n        el.classList.remove('show-more-menu');\r\n        menu.setAttribute('aria-hidden', true);\r\n        document.removeEventListener('mousedown', hideMenu);\r\n    }\r\n}\r\n\r\nbtn.addEventListener('click', showMenu, false);<\/pre>\n<p>That&#8217;s all! hopefully, you have successfully created the 3 Dots Dropdown Menu. If you have any questions or suggestions, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This code implements a 3 Dots Dropdown Menu using HTML, CSS, and JavaScript. It creates a button with three dots,&#8230;<\/p>\n","protected":false},"author":1,"featured_media":8892,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[38],"tags":[9],"class_list":["post-8890","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-menu","tag-dropdown-menu"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>3 Dots Dropdown Menu HTML CSS &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a free code snippet to create a 3 Dots Dropdown Menu HTML 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\/menu\/3-dots-dropdown-menu-html-css\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"3 Dots Dropdown Menu HTML CSS &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a free code snippet to create a 3 Dots Dropdown Menu HTML CSS. You can view demo and download the source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/menu\/3-dots-dropdown-menu-html-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-10T17:56:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T10:56:37+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/3-Dots-Dropdown-Menu-HTML-CSS.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"960\" \/>\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\/menu\/3-dots-dropdown-menu-html-css\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/menu\/3-dots-dropdown-menu-html-css\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"3 Dots Dropdown Menu HTML CSS\",\"datePublished\":\"2024-01-10T17:56:00+00:00\",\"dateModified\":\"2024-01-22T10:56:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/menu\/3-dots-dropdown-menu-html-css\/\"},\"wordCount\":262,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/menu\/3-dots-dropdown-menu-html-css\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/3-Dots-Dropdown-Menu-HTML-CSS.png\",\"keywords\":[\"Dropdown Menu\"],\"articleSection\":[\"Menu &amp; Nav\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/menu\/3-dots-dropdown-menu-html-css\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/menu\/3-dots-dropdown-menu-html-css\/\",\"url\":\"https:\/\/codehim.com\/menu\/3-dots-dropdown-menu-html-css\/\",\"name\":\"3 Dots Dropdown Menu HTML CSS &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/menu\/3-dots-dropdown-menu-html-css\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/menu\/3-dots-dropdown-menu-html-css\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/3-Dots-Dropdown-Menu-HTML-CSS.png\",\"datePublished\":\"2024-01-10T17:56:00+00:00\",\"dateModified\":\"2024-01-22T10:56:37+00:00\",\"description\":\"Here is a free code snippet to create a 3 Dots Dropdown Menu HTML CSS. You can view demo and download the source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/menu\/3-dots-dropdown-menu-html-css\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/menu\/3-dots-dropdown-menu-html-css\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/menu\/3-dots-dropdown-menu-html-css\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/3-Dots-Dropdown-Menu-HTML-CSS.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/3-Dots-Dropdown-Menu-HTML-CSS.png\",\"width\":1280,\"height\":960,\"caption\":\"3 Dots Dropdown Menu HTML CSS\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/menu\/3-dots-dropdown-menu-html-css\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Menu &amp; Nav\",\"item\":\"https:\/\/codehim.com\/category\/menu\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"3 Dots Dropdown Menu HTML 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":"3 Dots Dropdown Menu HTML CSS &#8212; CodeHim","description":"Here is a free code snippet to create a 3 Dots Dropdown Menu HTML 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\/menu\/3-dots-dropdown-menu-html-css\/","og_locale":"en_US","og_type":"article","og_title":"3 Dots Dropdown Menu HTML CSS &#8212; CodeHim","og_description":"Here is a free code snippet to create a 3 Dots Dropdown Menu HTML CSS. You can view demo and download the source code.","og_url":"https:\/\/codehim.com\/menu\/3-dots-dropdown-menu-html-css\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-10T17:56:00+00:00","article_modified_time":"2024-01-22T10:56:37+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/3-Dots-Dropdown-Menu-HTML-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\/menu\/3-dots-dropdown-menu-html-css\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/menu\/3-dots-dropdown-menu-html-css\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"3 Dots Dropdown Menu HTML CSS","datePublished":"2024-01-10T17:56:00+00:00","dateModified":"2024-01-22T10:56:37+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/menu\/3-dots-dropdown-menu-html-css\/"},"wordCount":262,"commentCount":1,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/menu\/3-dots-dropdown-menu-html-css\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/3-Dots-Dropdown-Menu-HTML-CSS.png","keywords":["Dropdown Menu"],"articleSection":["Menu &amp; Nav"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/menu\/3-dots-dropdown-menu-html-css\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/menu\/3-dots-dropdown-menu-html-css\/","url":"https:\/\/codehim.com\/menu\/3-dots-dropdown-menu-html-css\/","name":"3 Dots Dropdown Menu HTML CSS &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/menu\/3-dots-dropdown-menu-html-css\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/menu\/3-dots-dropdown-menu-html-css\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/3-Dots-Dropdown-Menu-HTML-CSS.png","datePublished":"2024-01-10T17:56:00+00:00","dateModified":"2024-01-22T10:56:37+00:00","description":"Here is a free code snippet to create a 3 Dots Dropdown Menu HTML CSS. You can view demo and download the source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/menu\/3-dots-dropdown-menu-html-css\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/menu\/3-dots-dropdown-menu-html-css\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/menu\/3-dots-dropdown-menu-html-css\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/3-Dots-Dropdown-Menu-HTML-CSS.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/3-Dots-Dropdown-Menu-HTML-CSS.png","width":1280,"height":960,"caption":"3 Dots Dropdown Menu HTML CSS"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/menu\/3-dots-dropdown-menu-html-css\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"Menu &amp; Nav","item":"https:\/\/codehim.com\/category\/menu\/"},{"@type":"ListItem","position":3,"name":"3 Dots Dropdown Menu HTML 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":16481,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/8890","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=8890"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/8890\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/8892"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=8890"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=8890"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=8890"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}