-
-
Notifications
You must be signed in to change notification settings - Fork 36
Closed
Description
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
ul {
list-style: none;
padding-left: 0;
}
ul li::before {
content: "\2022";
color: red;
font-weight: bold;
display: inline-block;
width: 1em;
margin-left: 0em;
}
</style>
</head>
<body>
<ul>
<li>hello</li>
<li>world</li>
</ul>
</body>
</html>
This should be the output: