style components react code example
Example 1: styled componets npm
npm i styled-components
Example 2: react div style
return <div style={{display: 'inline-block'}}>
Example 3: styled components react native
npm install --save styled-componentsnpm install --save styled-components
.npm__react-simple-code-editor__textarea:empty {
-webkit-text-fill-color: inherit !important;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
.npm__react-simple-code-editor__textarea {
color: transparent !important;
}
.npm__react-simple-code-editor__textarea::selection {
background-color: #accef7 !important;
color: transparent !important;
}
}
Example 4: inline style react
<ul className="todo-list">
{this.state.items.map((item,i)=>({
<li
className={classnames({ 'todo-list__item': true, 'is-complete': item.complete })}>
{item.name}
</li>
})}
</ul>
<li className='todo-list__item'
style={(item.complete) ? styles.complete : {}} />