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
SSolidJS
Created by Zed on 4/14/2024 in #support
Solidjs route not working...
No description
47 replies
SSolidJS
Created by Zed on 4/13/2024 in #support
How to do CSR in SolidJs?
1) How to do client-side-routing in solid with "typescipt"? 2) Is there any benefit using vite + solidjs + TS
3 replies
SSolidJS
Created by Zed on 4/11/2024 in #support
Need help on how to make "Kind of multipage" in SolidJs
So, basically I am new to all these frameworks stuff and solidjs is my first framework. I want to ask how can I apply a kind of multipage in Solidjs, lemme explain - I want to make a project website for a lorem ipsum company and some about us and recruitment page. I dont know how to do so that when some button or link is clicked the page will shift to other page or something like that. Just like how we use to make links to other index.html files to show other pages in the website.
13 replies