Search
 
SCRIPT & CODE EXAMPLE
 

CSS

list icon color change in css

ul {
  list-style: none; /* Remove default bullets */
}
ul li::before {
  content: "2022";  /* Add content: 2022 is the CSS Code/unicode for a bullet */
  color: red; /* Change the color */
  font-weight: bold; /* If you want it to be bold */
  display: inline-block; /* Needed to add space between the bullet and the text */
  width: 1em; /* Also needed for space (tweak if needed) */
  margin-left: -1em; /* Also needed for space (tweak if needed) */
}
Comment

PREVIOUS NEXT
Code Example
Css :: material css navbar 
Css :: CSS or locator 
Css :: how to dobody website and demo code html scss 
Css :: when else 
Css :: Netlify CMS mobile responsive CSS 
Css :: why does my css take time to load 
Css :: css different rules on different devices 
Css :: html prevent interaction 
Css :: change image color css 
Css :: wrapped header aura datatable 
Css :: chrome console remove css dark mode 
Css :: css animation visualizer 
Css :: p::after p::before css 
Css :: multi-styles 
Css :: sass dummy folder site download 
Css :: color: inherit; 
Css :: flex-direction 
Css :: input type search in css 
Css :: adobe xd to html and css 
Css :: bootstrap.min.css code download 
Typescript :: sqlite3.ProgrammingError: SQLite objects created in a thread can only be used in that same thread 
Typescript :: typescript check if string is number 
Typescript :: react typescript pwa 
Typescript :: rename table of contents latex 
Typescript :: add column if not exists postgresql 
Typescript :: sequelize is not null 
Typescript :: how to add elements to Jlist 
Typescript :: how to make s3 bucet objects publicj 
Typescript :: plot 3d points in python 
Typescript :: serenity.is Entity service async to sync requests 
ADD CONTENT
Topic
Content
Source link
Name
2+1 =