Examples

  • label_outline
    To center an element text
    text-align:center;
  • label_outline
    To disable text selection
    -moz-user-select:none;
    user-select:none;
  • label_outline
    To set the color of text to red
    color:red;
  • label_outline
    To set the custom cursor
    cursor:url('customCursorImage.png'),auto;
  • label_outline
    To just only hide an element
    visibility:hidden;
  • label_outline
    To permanently hide an element
    display:none;
  • label_outline
    To set an image as a background
    background-image:url('imagePath.png');
  • label_outline
    To center a background image
    background-position:center;
  • label_outline
    To create a transparent element
    opacity:0.2;
  • label_outline
    To 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_outline
    To blur an element
    filter: blur(2px);
  • label_outline
    To set an element text to UPPERCASE
    text-transform: uppercase;
  • label_outline
    To underline an element text
    text-decoration:underline;
  • label_outline
    To make mobile default touch response color to transparent
    -webkit-tap-highlight-color:transparent;
  • label_outline
    To hide overflow part of an element
    overflow:hidden;
  • label_outline
    To hide only scrollbar
    scrollbar-width:none;  /*For Mozilla*/
    ::-webkit-scrollbar{ width:0; } /*For Chrome*/
❮ Prev Selector Reference
TryOut Examples"Learn to Explore..!"

TryOut Editor

receipt