react学习之样式的编写

react

1.html:

<div id="root"></div>

直接在js中写 --- 样式1:

ReactDOM.render(

<h1 style={{color:'blue'}}>Hello, world!</h1>,

document.getElementById('root')

);

效果如图:

样式2:

css:

.hi{

color:red

}

js:

ReactDOM.render(

<h1 className='hi'>Hello, world!</h1>,

document.getElementById('root')

);

效果如图:

样式3:

js:

ReactDOM.render(

<h1 style={{color:'orange',fontSize:'60px'}}>Hello, world!</h1>,

document.getElementById('root')

);

document.getElementById('root').style.paddingLeft='150px'

效果如图:

以上是 react学习之样式的编写 的全部内容, 来源链接: utcz.com/z/383675.html

回到顶部