“Múltiplas classes CSS em React” Respostas de código

JSX ClassName Multiple

// Using String Templates
<div className={`${this.state.className} ${this.props.content.divClassName}}`>
	...
</div>
// OR
// Using An Array
<div className={[this.state.className, this.props.content.divClassName].join(" ")}>
	...
</div>
Clear Cobra

Múltiplas classes CSS em React

//one class from props and second from custom css class
className={`${classes.container} custom_container`}
Zia Ullah Sarwar

reaja vários nomes de classe

className={[this.state.className, this.props.content.divClassName].join(" ")}
Anxious Antelope

Como adicionar vários atributos de estilo no elemento React

style is just an Object, with css value turn to camelCase, so you could use any way to merge two object, and it should work.

ES6: style={Object.assign({}, style1, style2)}

ES7: style={{...style1, ...style2}}

lodash: style={_.merge({}, style1, style2)}
Kami

Como adicionar várias classes a um componente ReactJS

var liClasses = classNames({
      'main-class': true,
      'activeClass': self.state.focused === index
    });

    return (<li className={liClasses}>{data.name}</li>);
Batman

Aplicar vários objetos de estilo no React JS

// REACT JS STYLING - Snippet 1

//--- Use belowe methods ---
ES6: style={Object.assign({}, style1, style2)}
ES7: style={{...style1, ...style2}}
Copy Paster

Respostas semelhantes a “Múltiplas classes CSS em React”

Perguntas semelhantes a “Múltiplas classes CSS em React”

Mais respostas relacionadas para “Múltiplas classes CSS em React” em CSS

Procure respostas de código populares por idioma

Procurar outros idiomas de código