freeCodeCamp/guide/chinese/certifications/front-end-libraries/react/introducing-inline-styles/index.md

1.3 KiB
Raw Blame History

title localeTitle
Introducing Inline Styles 介绍内联样式

介绍内联样式

这可能有点棘手因为JSX与HTML非常相似但不一样

让我们逐步了解这些步骤,以便您了解其中的差异。 首先将样式标记设置为JavaScript对象

class Colorful extends React.Component { 
  render() { 
    return ( 
      <div style={{}}> 
        Big Red 
      </div> 
    ); 
  } 
 }; 

现在您将样式标记设置为空对象。请注意有两组花括号。这是JSX和HTML之间的重要区别。

其次,让我们将颜色设置为红色。

class Colorful extends React.Component { 
  render() { 
    return ( 
      <div style={{ color: 'red' }}> 
        Big Red 
      </div> 
    ); 
  } 
 }; 

最后让我们将字体大小设置为72px。

扰流板

class Colorful extends React.Component { 
  render() { 
    return ( 
      <div style={{ color: 'red', fontSize: '72'}}> 
        Big Red 
      </div> 
    ); 
  } 
 }; 

注意JSX属性是如何使用camelCase的 。这是记住JSX的另一个重要区别。 此外您可能注意到没有单位。在JSX中设置fontSize属性时 单位是可选的 如果不手动设置将自动设置为px。