--- id: 5a24c314108439a4d4036182 title: Add Inline Styles in React challengeType: 6 isRequired: false videoUrl: '' localeTitle: 在React中添加内联样式 --- ## Description
您可能已经注意到,在上一个挑战中,除了设置为JavaScript对象的style属性之外,还有HTML内联样式的其他几种语法差异。首先,某些CSS样式属性的名称使用驼峰大小写。例如,最后一个挑战使用fontSize而不是font-size设置font-size 。像font-size这样的连字符是JavaScript对象属性的无效语法,因此React使用驼峰大小写。通常,任何带连字符的样式属性都是使用JSX中的camel case编写的。除非另有说明,否则假定所有属性值长度单位(如heightwidthfontSize )均为px 。例如,如果要使用em ,则将值和单位用引号括起来,如{fontSize: "4em"} 。除了默认为px的长度值之外,所有其他属性值都应该用引号括起来。
## Instructions
如果您有大量样式,则可以将样式object分配给常量以保持代码的有序性。取消注释styles常量并声明具有三个样式属性及其值的object 。给div一个颜色为"purple" ,字体大小为40 ,边框为"2px solid purple" 。然后将style属性设置为等于styles常量。
## Tests
```yml tests: - text: styles变量应该是具有三个属性的object 。 testString: 'assert(Object.keys(styles).length === 3, "The styles variable should be an object with three properties.");' - text: styles变量的color属性应设置为purple的值。 testString: 'assert(styles.color === "purple", "The styles variable should have a color property set to a value of purple.");' - text: styles变量应该将fontSize属性设置为值40 。 testString: 'assert(styles.fontSize === 40, "The styles variable should have a fontSize property set to a value of 40.");' - text: styles变量应该将border属性设置为2px solid purple的值。 testString: 'assert(styles.border === "2px solid purple", "The styles variable should have a border property set to a value of 2px solid purple.");' - text: 该组件应呈现div元素。 testString: 'assert((function() { const mockedComponent = Enzyme.shallow(React.createElement(Colorful)); return mockedComponent.type() === "div"; })(), "The component should render a div element.");' - text: div元素的样式应该由styles对象定义。 testString: 'assert((function() { const mockedComponent = Enzyme.shallow(React.createElement(Colorful)); return (mockedComponent.props().style.color === "purple" && mockedComponent.props().style.fontSize === 40 && mockedComponent.props().style.border === "2px solid purple"); })(), "The div element should have its styles defined by the styles object.");' ```
## Challenge Seed
```jsx // const styles = // change code above this line class Colorful extends React.Component { render() { // change code below this line return (
Style Me!
); // change code above this line } }; ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```