“React добавить встроенные стили в React” Ответ

Встроенный стиль JSX

//Multiple inline styles
<div style={{padding:'0px 10px', position: 'fixed'}}>Content</div>
Puzzled Puffin

React добавить встроенные стили в React

// You are actuallty better off using style props
// But you can do it, you have to double brace
// and camel-case the css properties
render() {
	return (
    	<div style={{paddingTop: '2em'}}>
      		<p>Eh up, me duck!</p>
      	</div>
    )
}
Kaotik

Встроенный стиль реагирует

// Typical component with state-classes
<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>

// Using inline-styles for state
<li className='todo-list__item'
 style={(item.complete) ? styles.complete : {}} />
Clean Cheetah

Ответы похожие на “React добавить встроенные стили в React”

Вопросы похожие на “React добавить встроенные стили в React”

Больше похожих ответов на “React добавить встроенные стили в React” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования