Link Search Menu Expand Document

Define a style in a component

const dropdownStyle: CSSProperties = {
    width: 80,
    marginLeft: 10,
    marginRight: 20,
    height: 40
  };

// store multiple css styles 
export interface StylesDictionary{
    [Key: string]: CSSProperties;
}
<select id='dropdown' style={dropdownStyle}>

Created: 29.07.2021