Search By Label
 first-letter property for that..your_class_name::first-letter{
  text-transform: capitalize;
}pointer-events CSS property is used to control under what circumstances an element can trigger user interface events like mouse clicks and hover. It allows you to control the visibility and interaction of elements on the page.pointer-events property can take the following values::not pseudo selector is useful for styling a group of elements while leaving the last (or specified) element unstyled.One Two Three Four
.css-not-selector-shortcut { 
 display: flex; 
}
ul { 
 padding-left: 0; 
}
li { 
 list-style-type: none; 
 margin: 0; 
 padding: 0 0.75rem; 
}
li:not(:last-child) { 
 border-right: 2px solid #d2d5e4; 
}