Skip to content

Instantly share code, notes, and snippets.

@bengrunfeld
Last active March 25, 2021 15:50
Show Gist options
  • Save bengrunfeld/5f39fa623f03d07f22325347eb5f978b to your computer and use it in GitHub Desktop.
Save bengrunfeld/5f39fa623f03d07f22325347eb5f978b to your computer and use it in GitHub Desktop.
Block of Inline CSS Elements
const Page = () => (
<div>
<button style={{ color: "red", backgroundColor: "blue", padding: "10px", fontFamily: "Arial", margin: "30px" }}>Click Me</button>
<button style={{ color: "yellow", backgroundColor: "green", padding: "40px", fontFamily: "Helvetica, margin: "10px" }}>And Me</button>
<button style={{ color: "orange", backgroundColor: "purple", padding: "13px", fontFamily: "Sans Serif", margin: "50px" }}>Me Also</button>
</div>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment