Zed
Zed
Explore posts from servers
KPCKevin Powell - Community
Created by Zed on 6/9/2024 in #front-end
Can't center text after setting max-width
I wanted to center some text with them having a max-width of 65 characters but when I set max-width: 65; my text can't be centered and they go to the left of the screen
* {
padding: 0;
margin: 0;
font-family: "Courier New", monospace;
text-align: center;
background-color: black;
color: white;
}

h1 {
margin: 3rem 0;
}

p {
max-width: 65ch;
text-align: center;
}
* {
padding: 0;
margin: 0;
font-family: "Courier New", monospace;
text-align: center;
background-color: black;
color: white;
}

h1 {
margin: 3rem 0;
}

p {
max-width: 65ch;
text-align: center;
}
6 replies