Examples
- label_outlineTo center an element text
text-align:center;
- label_outlineTo disable text selection
-moz-user-select:none; user-select:none;
- label_outlineTo set the color of text to red
color:red;
- label_outlineTo set the custom cursor
cursor:url('customCursorImage.png'),auto;
- label_outlineTo just only hide an element
visibility:hidden;
- label_outlineTo permanently hide an element
display:none;
- label_outlineTo set an image as a background
background-image:url('imagePath.png');
- label_outlineTo center a background image
background-position:center;
- label_outlineTo create a transparent element
opacity:0.2;
- label_outlineTo create a transparent color
/* use rgba or hsla, set 'a' value */ color:rgba(200,110,220,0.2); background-color:rgba(200,110,220,0.2);
- label_outlineTo blur an element
filter: blur(2px);
- label_outlineTo set an element text to UPPERCASE
text-transform: uppercase;
- label_outlineTo underline an element text
text-decoration:underline;
- label_outlineTo make mobile default touch response color to transparent
-webkit-tap-highlight-color:transparent;
- label_outlineTo hide overflow part of an element
overflow:hidden;
- label_outlineTo hide only scrollbar
scrollbar-width:none; /*For Mozilla*/ ::-webkit-scrollbar{ width:0; } /*For Chrome*/
❮ Prev Selector Reference