
- CSS Tutorial
- CSS - Home
- CSS - Introduction
- CSS - Syntax
- CSS - Inclusion
- CSS - Measurement Units
- CSS - Colors
- CSS - Backgrounds
- CSS - Fonts
- CSS - Text
- CSS - Images
- CSS - Links
- CSS - Tables
- CSS - Borders
- CSS - Margins
- CSS - Lists
- CSS - Padding
- CSS - Cursors
- CSS - Outlines
- CSS - Dimension
- CSS - Scrollbars
- CSS Advanced
- CSS - Visibility
- CSS - Positioning
- CSS - Layers
- CSS - Pseudo Classes
- CSS - Pseudo Elements
- CSS - @ Rules
- CSS - Text Effects
- CSS - Media Types
- CSS - Paged Media
- CSS - Aural Media
- CSS - Printing
- CSS - Layouts
- CSS - Validations
- CSS3 Tutorial
- CSS3 - Tutorial
- CSS3 - Rounded Corner
- CSS3 - Border Images
- CSS3 - Multi Background
- CSS3 - Color
- CSS3 - Gradients
- CSS3 - Shadow
- CSS3 - Text
- CSS3 - Web font
- CSS3 - 2d transform
- CSS3 - 3d transform
- CSS3 - Animation
- CSS3 - Multi columns
- CSS3 - User Interface
- CSS3 - Box Sizing
- CSS Responsive
- CSS - Responsive Web Design
- CSS References
- CSS - Questions and Answers
- CSS - Quick Guide
- CSS - References
- CSS - Color References
- CSS - Web browser References
- CSS - Web safe fonts
- CSS - Units
- CSS - Animation
- CSS Resources
- CSS - Useful Resources
- CSS - Discussion
How to create a "to-do list" with CSS and JavaScript?
To create a to-do list with CSS and JavaScript, the code is as follows −
Example
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style> html { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } body { max-width: 500px; margin: 10px auto; } .todoInput { margin-top: 10px; padding: 10px; width: 500px; height: 60px; font-size: 40px; border: 2px solid black; color: purple; } li { text-align: left; font-size: 22px; list-style: none; border: 1px solid rgb(212, 212, 212); padding: 5px; margin-bottom: 10px; } li:hover { color: red; } </style> </head> <body> <div style="border: 1px solid black;"> <h1 style="text-align: center;color: red;">To-do List Example</h1> <input class="todoInput" placeholder="Add Something" /> <ul id="list"></ul> </div> <script> function addItem() { var todoItem = document.querySelector(".todoInput").value; var ul = document.getElementById("list"); var li = document.createElement("li"); li.appendChild(document.createTextNode("- " + todoItem)); ul.appendChild(li); todoItem = ""; li.onclick = deleteItem; } document.body.onkeyup = function(ele) { if (ele.keyCode == 13) { addItem(); } }; function deleteItem(ele) { ele.target.parentElement.removeChild(ele.target); } </script> </body> </html>
Output
The above code will produce the following output −
On adding something to the list by pressing enter −
- Related Articles
- How to create a list grid view with CSS and JavaScript?
- Create a to-do list with JavaScript
- How to create tabs with CSS and JavaScript?
- How to create popups with CSS and JavaScript?
- How to create a responsive slideshow with CSS and JavaScript?
- How to create a Modal Box with CSS and JavaScript?
- How to create a scroll indicator with CSS and JavaScript?
- How to create a collapsible section with CSS and JavaScript?
- How to create a snackbar / toast with CSS and JavaScript?
- How to create a tree view with CSS and JavaScript?
- How to create a quotes slideshow with CSS and JavaScript?
- How to create a filter list with JavaScript?
- How to create tab headers with CSS and JavaScript?
- How to create a vertical tab menu with CSS and JavaScript?
- How to create a clickable dropdown menu with CSS and JavaScript?

Advertisements