Apu Fouzder CPIK CSS
unknown
css
4 years ago
714 B
10
Indexable
*{ padding: 0; margin: 0; box-sizing: border-box; } header{ background: black; height: 100px; color: white; text-align: center; } header h1{ padding: 17px 0; } .banner{ background: green; height: 500px; position: relative; } .circle{ background: red; border-radius: 50%; width: 400px; height: 400px; position: absolute; left: 40%; top: 10%; border: 2px solid gray; } .about{ padding: 10px; height: 420px; display: flex; align-items: center; justify-content: center; } .content p{ padding: 20px; font-size: 25px; } footer{ background: black; height: 100px; text-align: center; color: white; } footer p{ padding: 17px 0; }
Editor is loading...