Home > Web Front-end > JS Tutorial > body text

React Basics~styling component/ inline_style

Patricia Arquette
Release: 2024-10-09 06:24:02
Original
617 people have browsed it
  • The inline style must be written in Javascript.

・The name of the property must be 'style'

・It makes no difference whether you set the style by dividing a value or by setting it directly.

・The property must be written in camel case,
like this fontWeight: "bold",.

・If we want to write property in CSS style(kebabcase),
We need to write it inside 'double quote' or 'single quote'.
This is an example "border-radius: 9999,.

・src/Example.js

import { useState } from "react";

const Example = () => {
  const [isSelected, setIsSelected] = useState(false);

  const clickHandler = () => setIsSelected((prev) => !prev);

  const style = {
    width: 120,
    height: 60,
    display: "block",
    fontWeight: "bold",
    "border-radius": 9999,
    cursor: "pointer",
    border: "none",
    margin: "auto",
    background: isSelected ? "pink" : "",
  };

  return (
    <>
      <button style={style} onClick={clickHandler}>
        Button
      </button>
      <div style={{ textAlign: "center" }}>{isSelected && "Clicked!"}</div>
    </>
  );
};

export default Example;

Copy after login

・Befor pushing the button.

React Basics~styling component/ inline_style

・After pushing the button.

React Basics~styling component/ inline_style

The above is the detailed content of React Basics~styling component/ inline_style. For more information, please follow other related articles on the PHP Chinese website!

source:dev.to
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!