Answers for "react center a text"

0

react center a text

Add textAlign: 'center' and it will center the text horizontally.

  headline: {
    textAlign: 'center', // <-- the magic
    fontWeight: 'bold',
    fontSize: 18,
    marginTop: 0,
    width: 200,
    backgroundColor: 'yellow',
  }
Posted by: Guest on July-27-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language