Subscribe Us

header ads

Penggunaan Inline CSS di React

 Berikut contoh kode penggunaan inline CSS untuk memberikan style secara langsung di file yang sama pada react

import React from "react";

function App() {
  const myStyle = {
    color: "blue",
    backgroundColor: "white",
    fontSize: "20px",
    fontWeight: "bold",
    border: "1px solid red",
    padding: "5px 10px",
  };

  return <div style={myStyle}>Hello, World!</div>;
}

export default App;

hasilnya tampak sbb:



Posting Komentar

0 Komentar