React 入门
React ES6 箭头函数
React ES6 变量
React ES6 数组方法
React ES6 解构
React ES6 扩展
React ES6 三元运算符
React JSX
React 组件
React 属性
React 事件
React 条件
React 列表
React 钩子 useState
React 钩子 useEffect
React CSS 样式

Menu
×
×
正确

练习:

在<h1>元素的内联样式中添加以下CSS样式

background-color = "yellow"

const Header = () => { return ( <> <h1 style={{backgroundColor: "yellow"}}>Hello Style!</h1> <p>Add a little style!</p> </> ); }
const Header = () => { return ( <> <h1 style={{backgroundColor: 'yellow'}}>Hello Style!</h1> <p>Add a little style!</p> </> ); }
const Header = () => { return ( <> <h1 style={{backgroundColor:"yellow"}}>Hello Style!</h1> <p>Add a little style!</p> </> ); }
const Header = () => { return ( <> <h1 style={{backgroundColor:'yellow'}}>Hello Style!</h1> <p>Add a little style!</p> </> ); }

不正确

点击 此处 重试

正确

下一题 ❯
const Header = () => {
  return (
    <>
      <h1 style=>Hello Style!</h1>
      <p>Add a little style!</p>
    </>
  );
}







×

重置分数?